forked from jiangxy/react-antd-admin
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathwebpack.config.prod.js
More file actions
67 lines (58 loc) · 1.71 KB
/
Copy pathwebpack.config.prod.js
File metadata and controls
67 lines (58 loc) · 1.71 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
const webpack = require('webpack');
const babelLoaderConfig = {
presets: ['es2015', 'stage-0', 'react'],
plugins: [['antd', {'style': true}]],
};
module.exports = {
entry: [
// 可能需要polyfill
'./src/index.js',
],
output: {
path: __dirname + '/dist',
filename: 'bundle.min.js',
// publicPath: 'http://mycdn.com/', // require时用来生成图片的地址
},
resolve: {
modulesDirectories: ['node_modules', './src'],
extensions: ['', '.js', '.jsx'],
},
module: {
loaders: [
{
test: /\.jsx?$/,
// 删除一些debug语句
loaders: ['babel-loader?' + JSON.stringify(babelLoaderConfig), 'strip-loader?strip[]=logger.debug,strip[]=console.log,strip[]=console.debug'],
exclude: /node_modules/,
}, {
test: /\.css$/,
loader: 'style!css',
}, {
test: /\.less$/,
loader: 'style!css!less',
}, {
test: /\.(png|jpg|svg)$/,
loader: 'url?limit=25000',
},
],
},
plugins: [
// 代码压缩
new webpack.optimize.UglifyJsPlugin({
minimize: true,
compress: {warnings: false},
}),
// 抽离公共部分
// webpack.optimize.CommonsChunkPlugin
new webpack.optimize.DedupePlugin(),
// 比对id的使用频率和分布来得出最短的id分配给使用频率高的模块
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.optimize.AggressiveMergingPlugin(),
// 允许错误不打断程序
new webpack.NoErrorsPlugin(),
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV),
__DEV__: JSON.stringify(JSON.parse(process.env.NODE_ENV === 'production' ? 'false' : 'true')),
}),
],
};