chore: debug
This commit is contained in:
parent
6a64c0e71e
commit
d6e470d4c7
1 changed files with 3 additions and 15 deletions
|
@ -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' })
|
||||
|
|
Reference in a new issue