Skip to content

Commit 8d46677

Browse files
authored
Disable webpack chunk coalescing (facebook#5030)
* Disable webpack chunk rollup * Bump timeout * Revert "Bump timeout" This reverts commit 84632115d178b48e08eb75dc5e9a921ece6aa759.
1 parent 489c6f2 commit 8d46677

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config/webpack.config.dev.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ module.exports = {
121121
// https://medium.com/webpack/webpack-4-code-splitting-chunk-graph-and-the-splitchunks-optimization-be739a861366
122122
splitChunks: {
123123
chunks: 'all',
124-
name: 'vendors',
124+
name: false,
125125
},
126126
// Keep the runtime chunk seperated to enable long term caching
127127
// https://twitter.com/wSokra/status/969679223278505985

config/webpack.config.prod.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ module.exports = {
159159
// https://medium.com/webpack/webpack-4-code-splitting-chunk-graph-and-the-splitchunks-optimization-be739a861366
160160
splitChunks: {
161161
chunks: 'all',
162-
name: 'vendors',
162+
name: false,
163163
},
164164
// Keep the runtime chunk seperated to enable long term caching
165165
// https://twitter.com/wSokra/status/969679223278505985

0 commit comments

Comments
 (0)