-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
37 lines (32 loc) · 837 Bytes
/
webpack.config.js
File metadata and controls
37 lines (32 loc) · 837 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
33
34
35
36
37
import path from 'path';
import { fileURLToPath } from 'url';
import CopyPlugin from 'copy-webpack-plugin';
const __dirname = path.dirname(fileURLToPath(import.meta.url));
const mode = process.env.NODE_ENV ?? 'development';
const config = {
mode,
devtool: mode === 'development' ? 'inline-source-map' : false,
entry: {
background: './extension/src/background.js',
content: './extension/src/content.js'
},
output: {
path: path.resolve(__dirname, 'build'),
filename: '[name].js'
},
plugins: [
new CopyPlugin({
patterns: [
{
from: path.resolve(__dirname, 'extension/assets'),
to: './assets'
},
{
from: path.resolve(__dirname, 'extension/manifest.json'),
to: './manifest.json'
}
]
})
]
};
export default config;