-
Notifications
You must be signed in to change notification settings - Fork 11
/
webpack.prod.js
54 lines (51 loc) · 1.47 KB
/
webpack.prod.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
const HtmlWebpackPlugin = require('html-webpack-plugin');
const StyleExtHtmlWebpackPlugin = require('style-ext-html-webpack-plugin');
const webpack = require('webpack');
const merge = require('webpack-merge');
const common = require('./webpack.common.js');
const path = require('path');
const staticSourcePath = path.join(__dirname, 'static');
module.exports = merge(common, {
devtool: 'source-map',
plugins: [
// Uglify
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false,
screw_ie8: true,
conditionals: true,
unused: true,
comparisons: true,
sequences: true,
dead_code: true,
evaluate: true,
if_return: true,
join_vars: true
},
sourceMap: true,
output: {
comments: false
}
}),
// Hashed module ids instead of names. Prod only
new webpack.HashedModuleIdsPlugin(),
// Copy html files and resources to destination, minify
new HtmlWebpackPlugin({
template: path.resolve(staticSourcePath, 'index.html'),
favicon: path.resolve(staticSourcePath, 'favicon.ico'),
minify: {
collapseWhitespace: true,
collapseInlineTagWhitespace: true,
removeComments: true,
removeRedundantAttributes: true
}
}),
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify('production')
}),
// Minify CSS
new StyleExtHtmlWebpackPlugin({
minify: true
})
]
});