-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
executable file
·43 lines (42 loc) · 973 Bytes
/
webpack.config.js
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
33
34
35
36
37
38
39
40
41
42
43
const CopyPlugin = require('copy-webpack-plugin');
module.exports = {
mode: 'development',
plugins: [
new CopyPlugin({
patterns: [
{ from: 'manifest.json', to: '' },
{
from: 'src/images/*',
to: '',
transformPath(targetPath) {
return targetPath.slice(4);
},
},
{
from: 'src/popup/*.html',
to: '',
transformPath(targetPath) {
return targetPath.slice(4);
},
},
{
from: 'src/popup/*.css',
to: '',
transformPath(targetPath) {
return targetPath.slice(4);
},
},
],
}),
],
entry: {
background: './src/background/index.js',
pink: './src/background/pink.js',
contentscript: './src/contentscript.js',
popup: './src/popup/popup.js',
},
output: {
filename: '[name].js',
path: __dirname + '/chrome-extension',
},
};