-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproduction.js
59 lines (56 loc) · 1.21 KB
/
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
59
import webpack from 'webpack';
import baseConfig from './base';
import CompressionPlugin from 'compression-webpack-plugin';
import ExtractTextPlugin from 'extract-text-webpack-plugin';
const plugins = [
new ExtractTextPlugin('[name].[hash].css'),
new webpack.optimize.DedupePlugin(),
new webpack.optimize.AggressiveMergingPlugin(),
new webpack.optimize.UglifyJsPlugin({
compress: {
screw_ie8: true,
warnings: false
}
}),
new CompressionPlugin({
asset: '[file].gz',
algorithm: 'gzip',
test: /\.css$|\.js$|\.html$/,
threshold: 10240,
minRatio: 0.8
})
];
const loaders = [
{
test: /\.scss$/,
loader: ExtractTextPlugin.extract({
fallbac: 'style-loader',
use: [
{ loader: 'css-loader' },
{ loader: 'postcss-loader' },
{ loader: 'sass-loader' }
]
})
},
{
test: /\.jsx$|\.js$/,
loader: 'babel-loader',
exclude: /node_modules/
}
];
export default {
...baseConfig,
output: { ...baseConfig.output, ...{
filename: '[name].[hash].js'
}},
plugins: [
...baseConfig.plugins,
...plugins
],
module: { ...baseConfig.module, ...{
rules: [
...baseConfig.module.rules,
...loaders
]
}}
};