Skip to content

Commit

Permalink
fix(bundle): include codecs chunks into bundle in bundle mode (#517)
Browse files Browse the repository at this point in the history
  • Loading branch information
NikGurev authored Mar 21, 2023
1 parent e794e2f commit f6998be
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion config/webpack/webpack-bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,12 @@ module.exports = {
},
],
},
plugins: [new webpack.ProgressPlugin()],
plugins: [
new webpack.ProgressPlugin(),
new webpack.optimize.LimitChunkCountPlugin({
maxChunks: 1,
}),
],
experiments: {
asyncWebAssembly: true,
},
Expand Down

0 comments on commit f6998be

Please sign in to comment.