chore: debug

This commit is contained in:
Cory Dransfeldt 2024-04-03 19:13:11 -07:00
parent bf406d870a
commit 6a64c0e71e
No known key found for this signature in database

View file

@ -2,16 +2,18 @@ import { getStore } from '@netlify/blobs'
import fs from 'fs' import fs from 'fs'
export const onPreBuild = async ({ constants }) => { export const onPreBuild = async ({ constants }) => {
console.log(constants) const scrobbles = getStore({
const scrobbles = getStore('scrobbles', { name: 'scrobbles',
siteID: constants.SITE_ID, siteID: constants.SITE_ID,
token: constants.NETLIFY_API_TOKEN, token: constants.NETLIFY_API_TOKEN,
}) })
const artists = getStore('artists', { const artists = getStore({
name: 'artists',
siteID: constants.SITE_ID, siteID: constants.SITE_ID,
token: constants.NETLIFY_API_TOKEN, token: constants.NETLIFY_API_TOKEN,
}) })
const albums = getStore('albums', { const albums = getStore({
name: 'albums',
siteID: constants.SITE_ID, siteID: constants.SITE_ID,
token: constants.NETLIFY_API_TOKEN, token: constants.NETLIFY_API_TOKEN,
}) })