chore: debug

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

View file

@ -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' })