From d6e470d4c7fd15b9ded1a7ebc2994152cd847acb Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Wed, 3 Apr 2024 19:20:04 -0700 Subject: [PATCH] chore: debug --- plugins/fetch-scrobbles/index.js | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/plugins/fetch-scrobbles/index.js b/plugins/fetch-scrobbles/index.js index d1510e30..cb775df2 100644 --- a/plugins/fetch-scrobbles/index.js +++ b/plugins/fetch-scrobbles/index.js @@ -2,21 +2,9 @@ import { getStore } from '@netlify/blobs' import fs from 'fs' export const onPreBuild = async ({ constants }) => { - const scrobbles = getStore({ - name: 'scrobbles', - siteID: constants.SITE_ID, - token: constants.NETLIFY_API_TOKEN, - }) - const artists = getStore({ - name: 'artists', - siteID: constants.SITE_ID, - token: constants.NETLIFY_API_TOKEN, - }) - const albums = getStore({ - name: 'albums', - siteID: constants.SITE_ID, - token: constants.NETLIFY_API_TOKEN, - }) + const scrobbles = getStore('scrobbles') + const artists = getStore('artists') + const albums = getStore('albums') const windowData = await scrobbles.get('window', { type: 'json'}) const artistsMap = await artists.get('artists-map', { type: 'json' }) const albumsMap = await albums.get('albums-map', { type: 'json' })