File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
packages/cloudflare/src/cli/templates Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -20,11 +20,8 @@ const cloudflareContextALS = new AsyncLocalStorage<CloudflareContext>();
2020// eslint-disable-next-line @typescript-eslint/no-explicit-any
2121( globalThis as any ) [ Symbol . for ( "__cloudflare-context__" ) ] = createALSProxy ( cloudflareContextALS ) ;
2222
23- globalThis . process = {
24- ...globalThis . process ,
25- // @ts -expect-error - populated when we run inside the ALS context
26- env : createALSProxy ( processEnvALS ) ,
27- } ;
23+ // @ts -expect-error - populated when we run inside the ALS context
24+ globalThis . process . env = createALSProxy ( processEnvALS ) ;
2825
2926// Injected at build time
3027const nextConfig : NextConfig = JSON . parse ( process . env . __NEXT_PRIVATE_STANDALONE_CONFIG ?? "{}" ) ;
You can’t perform that action at this time.
0 commit comments