-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.prod.config.js
38 lines (38 loc) · 988 Bytes
/
webpack.prod.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
var webpack=require('webpack');
var HtmlwebpackPlugin=require('html-webpack-plugin');
var ExtractTextPlugin=require('extract-text-webpack-plugin');
var UglifyJsPlugin=require('uglifyjs-webpack-plugin');
var {merge}=require('webpack-merge');
var webpackBaseConfig=require('./webpack.config.js');
webpackBaseConfig.plugins=[];
module.exports=merge(webpackBaseConfig,{
output:{
publicPath:'./dist/',
filename:'[name].[hash].js',
chunkFilename:'[name].chunk.js'
},
plugins:[
new ExtractTextPlugin({
filename:'[name].[hash].css',
allChunks:true
}),
new webpack.DefinePlugin({
'progress.env':{
NODE_ENV:'"production"'
}
}),
new UglifyJsPlugin({
uglifyOptions: {
warnings: false,
compress: {
pure_funcs: ['console.log','console.debug']//移除console
}
}
}),
new HtmlwebpackPlugin({
filename:'../index_prod.html',
template:'./index.ejs',
inject:false
}),
]
});