We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea161ce commit 1808b90Copy full SHA for 1808b90
packages/gatsby/src/services/initialize.ts
@@ -35,7 +35,10 @@ interface IPluginResolutionSSR extends IPluginResolution {
35
if (
36
process.env.gatsby_executing_command === `develop` &&
37
process.env.GATSBY_EXPERIMENTAL_FAST_DEV &&
38
- !isCI()
+ !isCI() &&
39
+ // skip FAST_DEV handling in workers, all env vars will be handle
40
+ // by main process already and passed to worker
41
+ !process.env.GATSBY_WORKER_POOL_WORKER
42
) {
43
process.env.GATSBY_EXPERIMENTAL_DEV_SSR = `true`
44
process.env.PRESERVE_FILE_DOWNLOAD_CACHE = `true`
0 commit comments