-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
81 lines (79 loc) · 2.05 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
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
import { fileURLToPath } from "node:url";
import { createRequire } from "node:module";
import path from "node:path";
import webpack from "webpack";
import MiniCssExtractPlugin from "mini-css-extract-plugin";
import CssMinimizerPlugin from "css-minimizer-webpack-plugin";
const require = createRequire(import.meta.url);
export default {
mode: "production",
plugins: [
new webpack.BannerPlugin(
"mdn-bob (Builder of Bits) - © Mozilla Corporation, MIT license"
),
new MiniCssExtractPlugin({
filename: "css/[name].css",
}),
],
entry: {
"editor-tabbed": {
import: "./editor/js/editor.js",
dependOn: "codemirror",
},
"editor-css": {
import: "./editor/js/editable-css.js",
dependOn: "codemirror",
},
"editor-js": {
import: "./editor/js/editable-js.js",
dependOn: "codemirror",
},
"editor-wat": {
import: "./editor/js/editable-wat.js",
dependOn: "codemirror",
},
codemirror: "./editor/js/editor-libs/codemirror-editor.js",
},
output: {
path: fileURLToPath(new URL("docs", import.meta.url)),
filename: "js/[name].js",
},
module: {
rules: [
{
test: /\.css$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
publicPath: (resourcePath, context) => {
// publicPath is the relative path of the resource to the context
// e.g. for ./css/admin/main.css the publicPath will be ../../
// while for ./css/main.css the publicPath will be ../
return path.relative(path.dirname(resourcePath), context) + "/";
},
},
},
{
loader: "css-loader",
options: {
url: false,
},
},
],
},
],
},
resolve: {
fallback: {
fs: false,
path: require.resolve("path-browserify"),
},
},
optimization: {
minimizer: [`...`, new CssMinimizerPlugin()],
splitChunks: {
chunks: "async",
},
},
};