-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwebpack.config.cjs
More file actions
94 lines (93 loc) · 2.59 KB
/
webpack.config.cjs
File metadata and controls
94 lines (93 loc) · 2.59 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
85
86
87
88
89
90
91
92
93
94
const path = require("path");
const Dotenv = require("dotenv-webpack");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const { CleanWebpackPlugin } = require("clean-webpack-plugin");
module.exports = {
entry: {
default: "./src/js/main.js",
devtool: "./src/js/main-devtool.js",
city: "./src/js/main-city.js",
dashboard: "./src/js/main-dashboard.js",
editor: "./src/js/main-editor.js",
},
output: {
filename: "[name].[contenthash].js",
path: path.resolve(__dirname, "assets"),
},
module: {
rules: [
{
test: /\.(scss|css)$/,
exclude: /node_modules/,
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
publicPath: "",
},
},
{
loader: "css-loader",
options: {
sourceMap: true,
},
},
{
loader: "sass-loader",
options: {
sourceMap: true,
},
},
],
},
{
test: /\.(png|svg|jpg|jpeg|gif)$/i,
type: "asset/resource",
},
],
},
plugins: [
new Dotenv(),
new MiniCssExtractPlugin({
filename: "[name].[contenthash].css",
}),
new HtmlWebpackPlugin({
template: path.resolve(__dirname, "src/html/index.html"),
filename: path.resolve(__dirname, "index.html"),
chunks: ["default"],
minify: true,
}),
new HtmlWebpackPlugin({
template: path.resolve(__dirname, "src/html/devtool.html"),
filename: path.resolve(__dirname, "devtool.html"),
chunks: ["devtool"],
minify: true,
}),
new HtmlWebpackPlugin({
template: path.resolve(__dirname, "src/html/city.html"),
filename: path.resolve(__dirname, "city.html"),
chunks: ["city"],
minify: true,
}),
new HtmlWebpackPlugin({
template: path.resolve(__dirname, "src/html/editor.html"),
filename: path.resolve(__dirname, "editor.html"),
chunks: ["editor"],
minify: true,
}),
new HtmlWebpackPlugin({
template: path.resolve(__dirname, "src/html/dashboard.html"),
filename: path.resolve(__dirname, "dashboard.html"),
chunks: ["dashboard"],
minify: true,
}),
new CleanWebpackPlugin({
// todo: temporary measure. Dev builds should be done without hashes in the filename.
cleanOnceBeforeBuildPatterns: ["**/*"],
}),
],
mode: "development",
// Todo: change the source map settings for production builds
devtool: "source-map",
};