File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -80,6 +80,10 @@ export default {
8080
8181 // Set flag to keep the prerendering behaviour
8282 config . _legacyGenerate = true
83+ if ( config . build ) {
84+ // https://github.com/nuxt/nuxt.js/issues/7390
85+ config . build . parallel = false
86+ }
8387
8488 const nuxt = await cmd . getNuxt ( config )
8589
Original file line number Diff line number Diff line change @@ -129,6 +129,8 @@ async function getNuxt (args, cmd) {
129129 }
130130 config . buildDir = ( config . static && config . static . cacheDir ) || path . resolve ( config . rootDir , 'node_modules/.cache/nuxt' )
131131 config . build = config . build || { }
132+ // https://github.com/nuxt/nuxt.js/issues/7390
133+ config . build . parallel = false
132134 config . build . transpile = config . build . transpile || [ ]
133135 if ( ! config . static || ! config . static . cacheDir ) {
134136 config . build . transpile . push ( '.cache/nuxt' )
You can’t perform that action at this time.
0 commit comments