Skip to content

Commit 95d5427

Browse files
committed
fix: disable webpack chunk coalescing
see facebook/create-react-app#5030 for more info
1 parent ee96597 commit 95d5427

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/config/webpack.config.dev.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ const config: Configuration = {
8383
optimization: {
8484
splitChunks: {
8585
chunks: 'all',
86-
name: 'vendors',
86+
name: false,
8787
},
8888
runtimeChunk: true,
8989
},

src/config/webpack.config.prod.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ const config: Configuration = {
113113
// https://medium.com/webpack/webpack-4-code-splitting-chunk-graph-and-the-splitchunks-optimization-be739a861366
114114
splitChunks: {
115115
chunks: 'all',
116-
name: 'vendors',
116+
name: false,
117117
},
118118
// Keep the runtime chunk seperated to enable long term caching
119119
// https://twitter.com/wSokra/status/969679223278505985

0 commit comments

Comments
 (0)