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