0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-10 23:01:26 -05:00

Build edge/worker runtime with webworker ssr target (#7101)

This commit is contained in:
Bjorn Lu 2023-05-17 15:44:20 +08:00 committed by GitHub
parent 313a48dbf1
commit 6190d11bf5
2 changed files with 2 additions and 1 deletions

View file

@ -50,6 +50,7 @@
"@astrojs/webapi": "^2.1.1",
"@vercel/analytics": "^0.1.8",
"@vercel/nft": "^0.22.1",
"esbuild": "^0.17.12",
"fast-glob": "^3.2.11",
"set-cookie-parser": "^2.5.1",
"web-vitals": "^3.1.1"

View file

@ -101,7 +101,7 @@ export default function vercelEdge({
}
vite.ssr ||= {};
vite.ssr.target ||= 'webworker';
vite.ssr.target = 'webworker';
// Vercel edge runtime is a special webworker-ish environment that supports process.env,
// but Vite would replace away `process.env` in webworkers, so we set a define here to prevent it