diff --git a/src/_data/links.js b/src/_data/links.js index be35bbf7..af8af29c 100644 --- a/src/_data/links.js +++ b/src/_data/links.js @@ -1,4 +1,4 @@ -import { getStore } from "@netlify/blobs"; +import { getStore, getDeployStore } from "@netlify/blobs"; import EleventyFetch from '@11ty/eleventy-fetch' // import { S3Client, GetObjectCommand, PutObjectCommand } from '@aws-sdk/client-s3' @@ -16,7 +16,7 @@ const filterDuplicates = array => { return array.filter(obj => !seenIds.has(obj.id) && seenIds.add(obj.id)); }; -export default async function () { +export default async function ({ constants }) { // const client = new S3Client({ // credentials: { // accessKeyId: process.env.ACCESS_KEY_B2, @@ -50,7 +50,11 @@ export default async function () { let cachedLinks; if (process.env.ELEVENTY_PRODUCTION) { - READWISE_LINKS_STORE = getStore("readwise-links"); + const store = getDeployStore({ + siteID: constants.SITE_ID, + token: constants.NETLIFY_API_TOKEN, + }); + READWISE_LINKS_STORE = await store.getStore("readwise-links"); await READWISE_LINKS_STORE.get('cached-links'); }