-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebpack.config.production.js
53 lines (49 loc) · 1.28 KB
/
webpack.config.production.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
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const InlineManifestWebpackPlugin = require('inline-manifest-webpack-plugin');
const webpack = require('webpack');
const config = require('./webpack.config.base');
config.bail = true;
config.profile = false;
config.output.filename = '[name].[chunkhash].js';
config.module.rules = config.module.rules.concat([
{
test: /\.css$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: [
{
loader: 'css-loader',
options: {
importLoaders: 1,
minimize: true
}
},
'postcss-loader'
]
})
}
]);
config.plugins = config.plugins.concat([
new webpack.LoaderOptionsPlugin({
debug: true
}),
new ExtractTextPlugin('styles.[contenthash].css'),
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
minChunks(module) {
return module.context && module.context.indexOf('node_modules') !== -1;
}
}),
new webpack.optimize.CommonsChunkPlugin({ name: 'manifest' }),
new InlineManifestWebpackPlugin({ name: 'webpackManifest' }),
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
},
mangle: true,
output: {
comments: false
}
})
]);
module.exports = config;