chore: debug
This commit is contained in:
parent
8a797c6b0f
commit
6a7cdf4460
1 changed files with 8 additions and 1 deletions
|
@ -1,6 +1,13 @@
|
|||
import window from './json/scrobbles-window.json'
|
||||
import fs from 'fs'
|
||||
|
||||
export default async function () {
|
||||
const window = fs.readFileSync('./json/scrobbles-window.json', (error, data) => {
|
||||
if (error) {
|
||||
console.log(error);
|
||||
return;
|
||||
}
|
||||
return JSON.parse(data)
|
||||
})
|
||||
console.log(window)
|
||||
return window
|
||||
}
|
||||
|
|
Reference in a new issue