From e0bd926657ec7ba9677fc2a3d6a799d2a8830e45 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Wed, 3 Apr 2024 19:44:40 -0700 Subject: [PATCH] chore: debug --- plugins/fetch-scrobbles/index.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/plugins/fetch-scrobbles/index.js b/plugins/fetch-scrobbles/index.js index 36ddc81d..847dc961 100644 --- a/plugins/fetch-scrobbles/index.js +++ b/plugins/fetch-scrobbles/index.js @@ -13,10 +13,6 @@ export const onPreBuild = async ({ constants }) => { const artistsMap = await artists.get('artists-map', { type: 'json' }) const albumsMap = await albums.get('albums-map', { type: 'json' }) const nowPlaying = await scrobbles.get('now-playing', { type: 'json'}) - - console.log(artistsMap) - console.log(albumsMap) - fs.writeFileSync('/src/_data/json/scrobbles-window.json', windowData) fs.writeFileSync('/src/_data/json/artists-map.json', artistsMap) fs.writeFileSync('/src/_data/json/albums-map.json', albumsMap)