2017-05-03 01:04:16 +01:00
|
|
|
// Note: You must restart bin/webpack-dev-server for changes to take effect
|
|
|
|
|
|
|
|
/* eslint global-require: 0 */
|
|
|
|
|
2017-05-20 16:31:47 +01:00
|
|
|
const webpack = require('webpack');
|
|
|
|
const merge = require('webpack-merge');
|
|
|
|
const CompressionPlugin = require('compression-webpack-plugin');
|
|
|
|
const sharedConfig = require('./shared.js');
|
2017-05-03 01:04:16 +01:00
|
|
|
|
|
|
|
module.exports = merge(sharedConfig, {
|
2017-05-07 14:22:30 +01:00
|
|
|
|
|
|
|
devtool: 'source-map', // separate sourcemap file, suitable for production
|
|
|
|
|
2017-05-03 01:04:16 +01:00
|
|
|
output: { filename: '[name]-[chunkhash].js' },
|
|
|
|
|
|
|
|
plugins: [
|
|
|
|
new webpack.optimize.UglifyJsPlugin({
|
2017-05-06 20:24:59 +01:00
|
|
|
compress: true,
|
|
|
|
mangle: true,
|
2017-05-03 01:04:16 +01:00
|
|
|
|
|
|
|
output: {
|
2017-05-20 16:31:47 +01:00
|
|
|
comments: false,
|
2017-05-03 01:04:16 +01:00
|
|
|
},
|
|
|
|
|
2017-05-20 16:31:47 +01:00
|
|
|
sourceMap: true,
|
2017-05-03 01:04:16 +01:00
|
|
|
}),
|
|
|
|
new CompressionPlugin({
|
|
|
|
asset: '[path].gz[query]',
|
|
|
|
algorithm: 'gzip',
|
2017-05-20 16:31:47 +01:00
|
|
|
test: /\.(js|css|svg|eot|ttf|woff|woff2)$/,
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
});
|