-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
32 lines (31 loc) · 873 Bytes
/
webpack.config.js
File metadata and controls
32 lines (31 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
const path = require('path');
const CopyPlugin = require('copy-webpack-plugin');
module.exports = {
entry: {
'service-worker': './src/background/service-worker.js',
content: './src/content/bridge.js',
'popup/popup': './src/popup/popup.js',
'options/options': './src/options/options.js',
},
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name].js',
clean: true,
},
plugins: [
new CopyPlugin({
patterns: [
{ from: 'manifest.json', to: '.' },
{ from: 'src/popup/popup.html', to: 'popup/' },
{ from: 'src/popup/popup.css', to: 'popup/' },
{ from: 'src/options/options.html', to: 'options/' },
{ from: 'src/options/options.css', to: 'options/' },
{ from: 'icons/', to: 'icons/' },
],
}),
],
resolve: {
extensions: ['.js'],
},
devtool: false,
};