Skip to content

Commit f6998be

Browse files
authored
fix(bundle): include codecs chunks into bundle in bundle mode (#517)
1 parent e794e2f commit f6998be

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

config/webpack/webpack-bundle.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,12 @@ module.exports = {
8989
},
9090
],
9191
},
92-
plugins: [new webpack.ProgressPlugin()],
92+
plugins: [
93+
new webpack.ProgressPlugin(),
94+
new webpack.optimize.LimitChunkCountPlugin({
95+
maxChunks: 1,
96+
}),
97+
],
9398
experiments: {
9499
asyncWebAssembly: true,
95100
},

0 commit comments

Comments
 (0)