-
Notifications
You must be signed in to change notification settings - Fork 3
/
webpack-config.js
executable file
·61 lines (52 loc) · 1.49 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
const path = require('path');
const webpack = require('webpack');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const genRules = require('./webpack-common.loader');
const buildPath = path.join(__dirname, "dist");
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const config = {
mode: 'production',
// 入口文件所在的上下文
context: path.join(__dirname, "src/"),
// 入口文件配置
entry: {
js: './js/index.js'
},
// 文件导出的配置
output:{
path: buildPath ,
filename: "js/index.js",
libraryTarget: "umd"
},
// 优化代码
optimization: {
minimizer: [
// 压缩js
new UglifyJsPlugin({
uglifyOptions: {
cache: true,
parallel: true,
sourceMap: true,
warnings: false
}
})
]
},
// 以插件形式定制webpack构建过程
plugins: [
// 删除dist目录
new CleanWebpackPlugin(),
// 将文件复制到构建目录
// CopyWebpackPlugin-> https://github.com/webpack-contrib/copy-webpack-plugin
new CopyWebpackPlugin([
{from: path.join(__dirname, '/package.json'), to: '', toType: 'file'},
{from: path.join(__dirname, '/README.md'), to: '', toType: 'file'}
])
],
// 处理项目中的不同类型的模块。
module: {
rules: genRules('src', false)
}
};
module.exports = config;