We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8371fd commit 82c4c57Copy full SHA for 82c4c57
build.mjs
@@ -14,7 +14,7 @@ const outdir = 'build'
14
const __dirname = path.resolve()
15
const isProduction = process.argv[2] !== '--development' // --production and --analyze are both production
16
const isAnalyzing = process.argv[2] === '--analyze'
17
-const parallelBuild = process.env.BUILD_PARALLEL === '0' ? false : true
+const parallelBuild = process.env.BUILD_PARALLEL !== '0'
18
const isWatchOnce = !!process.env.BUILD_WATCH_ONCE
19
// Cache compression control: default none; allow override via env
20
const cacheCompressionEnv = process.env.BUILD_CACHE_COMPRESSION
0 commit comments