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 5c90017 commit 744c375Copy full SHA for 744c375
packages/@vue/cli-service/lib/config/app.js
@@ -67,8 +67,10 @@ module.exports = (api, options) => {
67
// more options:
68
// https://github.com/kangax/html-minifier#options-quick-reference
69
},
70
- // necessary to consistently work with multiple chunks via CommonsChunkPlugin
71
- chunksSortMode: 'dependency'
+ // default sort mode uses toposort which cannot handle cyclic deps
+ // in certain cases, and in webpack 4, chunk order in HTML doesn't
72
+ // matter anyway
73
+ chunksSortMode: 'none'
74
})
75
}
76
0 commit comments