-
Notifications
You must be signed in to change notification settings - Fork 3
/
webpack.config.production.js
58 lines (57 loc) · 1.44 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
54
55
56
57
58
const path = require('path');
const webpack = require('webpack');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const OfflinePlugin = require('offline-plugin');
const NameAllModulesPlugin = require('name-all-modules-plugin');
const CompressionPlugin = require('compression-webpack-plugin');
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
module.exports = {
output: {
filename: 'scripts/[name].[chunkhash].js',
publicPath: '/'
},
module: {
rules: [
{
test: /\.css$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: {
loader: 'css-loader',
options: {
minimize: true,
sourceMap: true
}
}
}),
include: [path.join(__dirname, 'node_modules')]
}
]
},
plugins: [
new webpack.optimize.ModuleConcatenationPlugin(),
new UglifyJsPlugin({
sourceMap: true
}),
new ExtractTextPlugin('vendor.css'),
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
minChunks: Infinity
}),
new webpack.optimize.CommonsChunkPlugin({
name: 'runtime',
minChunks: Infinity
}),
new NameAllModulesPlugin(),
new OfflinePlugin({
ServiceWorker: {
events: true
}
}),
new CompressionPlugin({
asset: '[path].gz[query]',
algorithm: 'gzip',
test: /\.(js|json|css|html)$/
})
]
};