diff options
author | 2021-06-21 09:38:55 +0200 | |
---|---|---|
committer | 2021-06-21 09:38:55 +0200 | |
commit | 1f0f06e6d53e367986bc0a890aa269a1b6a2a6d0 (patch) | |
tree | 5b82f8a4e01233358fa03bf1af719fc5f7b68801 /webpack.config.js | |
parent | 48970567f1943fb70ef1526827c21548d23695e7 (diff) |
Bundle background and panel sources in the same widgetsandbox/rzanoni/next
Bug-AGL: SPEC-3965
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Signed-off-by: Roger Zanoni <rzanoni@igalia.com>
Change-Id: I718ea850ed978a3ebb716a242cbe4c362e4fc5bb
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/webpack.config.js b/webpack.config.js index 55c8d7a..60f9d27 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -10,7 +10,8 @@ const ZipPlugin = require('zip-webpack-plugin'); module.exports = { mode: 'production', entry: { - index: './src/index.js' + index: './src/index.js', + bg: './src/bg/index.js' }, output: { path: __dirname + '/dist', @@ -21,6 +22,9 @@ module.exports = { }, optimization: { minimizer: [new UglifyJsPlugin()], + splitChunks: { + chunks: 'all', + }, }, plugins: [ new CleanWebpackPlugin(['dist']), @@ -52,10 +56,17 @@ module.exports = { new HtmlWebpackPlugin({ template: 'src/index.html', filename: 'index.html', - inject: 'body' + inject: 'body', + chunks: ['index', 'vendors~index'] + }), + new HtmlWebpackPlugin({ + template: 'src/bg/index.html', + filename: 'bg/index.html', + inject: 'body', + chunks: ['bg'] }), new MiniCSSExtractPlugin({ - filename: 'app.css', + filename: '[name].css', path: __dirname + '/dist' }), new ZipPlugin({ @@ -114,4 +125,4 @@ module.exports = { compress: true, port: 9000 } -};
\ No newline at end of file +}; |