-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.mjs
More file actions
84 lines (81 loc) · 1.72 KB
/
webpack.config.mjs
File metadata and controls
84 lines (81 loc) · 1.72 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import HtmlWebpackPlugin from "html-webpack-plugin";
import CopyPlugin from "copy-webpack-plugin";
import path from "path";
function getHtmlPlugins(chunks){
return chunks.map(
(chunk) =>
new HtmlWebpackPlugin({
title: "YouTube extension",
filename: `./js/${chunk}.html`,
chunks: [chunk],
templateContent: `
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>YouTube extension</title>
</head>
<body>
<div id="root"></div>
</body>
</html>
`,
}),
);
}
const options = {
entry: {
background: "./src/background/background.js",
contentScript: "./src/contentScript/index.js",
popup: "./src/popup/index.js",
},
mode: "production",
module: {
rules: [
{
test: /\.js$/,
use: [
{
loader: "babel-loader",
options: {
presets: ["@babel/env", "@babel/preset-react"],
},
},
],
exclude: /node_modules/,
},
{
exclude: /node_modules/,
test: /\.css$/,
use: [
"style-loader",
"css-loader",
],
},
],
},
plugins: [
new CopyPlugin({
patterns: [
{ from: "./manifest.json", to: "./manifest.json" },
],
}),
...getHtmlPlugins(["index", "popup"]),
],
resolve: {
extensions: [".js", ".jsx"],
},
output: {
path: path.resolve("./dist/"),
filename: "./js/[name].js",
publicPath: "/",
},
optimization: {
splitChunks: {
chunks(chunk){
return chunk.name !== "contentScript";
},
},
},
};
export default options;