test: netlify blobs
This commit is contained in:
parent
64fc1c0f9b
commit
1a5db501f9
1 changed files with 3 additions and 3 deletions
|
@ -16,7 +16,7 @@ const filterDuplicates = array => {
|
|||
return array.filter(obj => !seenIds.has(obj.id) && seenIds.add(obj.id));
|
||||
};
|
||||
|
||||
export default async function ({ constants }) {
|
||||
export default async function () {
|
||||
// const client = new S3Client({
|
||||
// credentials: {
|
||||
// accessKeyId: process.env.ACCESS_KEY_B2,
|
||||
|
@ -51,8 +51,8 @@ export default async function ({ constants }) {
|
|||
|
||||
if (process.env.ELEVENTY_PRODUCTION) {
|
||||
const store = getDeployStore({
|
||||
siteID: constants.SITE_ID,
|
||||
token: constants.NETLIFY_API_TOKEN,
|
||||
siteID: process.env.SITE_ID_NETLIFY,
|
||||
token: process.env.API_TOKEN_NETLIFY_BLOBS,
|
||||
});
|
||||
READWISE_LINKS_STORE = await store.getStore("readwise-links");
|
||||
await READWISE_LINKS_STORE.get('cached-links');
|
||||
|
|
Reference in a new issue