-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.dll.js
63 lines (61 loc) · 1.29 KB
/
webpack.dll.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
var path = require('path');
var webpack = require('webpack');
var ParallelUglifyPlugin = require('webpack-parallel-uglify-plugin');
//const CleanWebpackPlugin = require('clean-webpack-plugin');
module.exports = {
devtool: false,
resolve: {
extensions: ['.js', '.jsx'],
},
entry: {
vendor: [
'react',
'react-dom',
'antd',
'redux',
'prop-types',
'react-redux',
'ttk-rc-select',
'moment',
'md5',
'immutable',
'history',
'classnames',
'omit.js',
'react-resizable',
'react-viewer',
'whatwg-fetch',
'fixed-data-table-2'
]
},
output: {
path: path.join(__dirname, 'vendor'),
filename: '[name].[chunkhash:8].dll.js',
library: '[name]_lib',
// library 与 DllPlugin 中的 name 一致
},
plugins: [
//new CleanWebpackPlugin(['vendor']),
new webpack.DefinePlugin({
'process.env': { 'NODE_ENV': JSON.stringify('production') },
}),
new webpack.ContextReplacementPlugin(
/moment[\\/]locale$/i,
/^\.\/zh-cn$/i,
),
// new webpack.IgnorePlugin(/^\.\/locale$/i, /moment$/i),
new webpack.DllPlugin({
context: __dirname,
name: '[name]_lib',
path: path.join(__dirname, 'vendor', '[name].manifest.json'),
}),
new ParallelUglifyPlugin({
cacheDir: '.cache/',
uglifyJS: {
output: {
comments: false
}
}
}),
],
};