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}`,
});
};