-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
42 lines (37 loc) · 1.06 KB
/
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
import path from 'path';
import { fileURLToPath } from 'url';
import HtmlWebpackPlugin from 'html-webpack-plugin';
import CopyPlugin from 'copy-webpack-plugin';
const __dirname = path.dirname(fileURLToPath(import.meta.url));
const config = {
mode: 'development',
devtool: 'inline-source-map',
entry: {
background: './src/background.js',
popup: './src/pop-up.js',
content: './src/content.js',
},
output: {
path: path.resolve(__dirname, 'build'),
filename: '[name].js',
},
plugins: [
new HtmlWebpackPlugin({
template: './src/pop-up.html',
filename: 'pop-up.html',
}),
new CopyPlugin({
patterns: [
{
from: "assets",
to: "./assets" // Copies to build folder
},
{
from: "manifest.json",
to: "./manifest.json"
}
],
})
],
};
export default config;