UNPKG

@netlify/next-runtime

Version:
10 lines (9 loc) 320 B
import { getDeployStore } from '@netlify/blobs'; export const getBlobStore = ({ NETLIFY_API_TOKEN, NETLIFY_API_HOST, SITE_ID, }) => { return getDeployStore({ deployID: process.env.DEPLOY_ID, siteID: SITE_ID, token: NETLIFY_API_TOKEN, apiURL: `https://${NETLIFY_API_HOST}`, }); };