From 6a64c0e71ecfc66d401e0e7e0c61e82586884297 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Wed, 3 Apr 2024 19:13:11 -0700 Subject: [PATCH] chore: debug --- plugins/fetch-scrobbles/index.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/plugins/fetch-scrobbles/index.js b/plugins/fetch-scrobbles/index.js index 6e98fef2..d1510e30 100644 --- a/plugins/fetch-scrobbles/index.js +++ b/plugins/fetch-scrobbles/index.js @@ -2,16 +2,18 @@ import { getStore } from '@netlify/blobs' import fs from 'fs' export const onPreBuild = async ({ constants }) => { - console.log(constants) - const scrobbles = getStore('scrobbles', { + const scrobbles = getStore({ + name: 'scrobbles', siteID: constants.SITE_ID, token: constants.NETLIFY_API_TOKEN, }) - const artists = getStore('artists', { + const artists = getStore({ + name: 'artists', siteID: constants.SITE_ID, token: constants.NETLIFY_API_TOKEN, }) - const albums = getStore('albums', { + const albums = getStore({ + name: 'albums', siteID: constants.SITE_ID, token: constants.NETLIFY_API_TOKEN, })