diff --git a/.gitignore b/.gitignore index 83bc09b..21299ed 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,8 @@ dist dist-ssr *.local +.env + # Editor directories and files .vscode/* !.vscode/extensions.json diff --git a/vercel.json b/vercel.json index 0f32683..43d6b41 100644 --- a/vercel.json +++ b/vercel.json @@ -1,3 +1,4 @@ { - "rewrites": [{ "source": "/(.*)", "destination": "/index.html" }] + "rewrites": [{ "source": "/(.*)", "destination": "/index.html" }], + "installCommand": "echo \"//npm.pkg.github.com/:_authToken=$NODE_AUTH_TOKEN\" >> .npmrc && pnpm install --frozen-lockfile" }