diff --git a/plugins/fetch-scrobbles/index.js b/plugins/fetch-scrobbles/index.js index b34cd84b..36ddc81d 100644 --- a/plugins/fetch-scrobbles/index.js +++ b/plugins/fetch-scrobbles/index.js @@ -1,28 +1,14 @@ -import { getStore } from '@netlify/blobs' +import { getStore, setEnvironmentContext } from '@netlify/blobs' import fs from 'fs' export const onPreBuild = async ({ constants }) => { - const scrobbles = getStore({ - name: 'scrobbles', - options: { - siteID: constants.SITE_ID, - token: constants.NETLIFY_API_TOKEN, - } - }) - const artists = getStore({ - name: 'artists', - options: { - siteID: constants.SITE_ID, - token: constants.NETLIFY_API_TOKEN, - } - }) - const albums = getStore({ - name: 'albums', - options: { - siteID: constants.SITE_ID, - token: constants.NETLIFY_API_TOKEN, - } + setEnvironmentContext({ + 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' })