-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.common.js
44 lines (44 loc) · 1.08 KB
/
webpack.config.common.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
const webpack = require("webpack");
const CleanWebpackPlugin = require("clean-webpack-plugin");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const path = require("path");
const entry = {
index: "./src/page/index/index.js",
main: "./src/page/main/main.js",
};
const pages = [
new HtmlWebpackPlugin({
title: "index",
template: "./src/page/index/index.html",
filename: "index.html",
chunks: ["commons", "index"],
favicon: ''
}),
new HtmlWebpackPlugin({
title: "main",
template: "./src/page/main/main.html",
chunks: ["commons", "main"],
filename: "main.html",
favicon: ''
})
]
pages.forEach(item => {
item.options.minify = {
collapseWhitespace: true, // 折叠空白区域 也就是压缩代码
removeAttributeQuotes: true
}
})
module.exports = {
entry: entry,
output: {
filename: "js/[name].js",
path: path.resolve(__dirname, "dist"),
publicPath: ''
},
resolve: {
modules: ["node_modules", path.resolve(__dirname, "src/common"), ]
},
plugins: [
new CleanWebpackPlugin(["./dist"]),
].concat(pages),
}