HackMD/webpack.production.js

29 lines
807 B
JavaScript
Raw Normal View History

2016-10-11 07:45:00 +00:00
var baseConfig = require('./webpackBaseConfig');
var webpack = require('webpack');
2016-10-12 09:15:59 +00:00
var path = require('path');
2016-11-02 03:25:21 +00:00
var ExtractTextPlugin = require("extract-text-webpack-plugin");
2016-10-11 07:45:00 +00:00
module.exports = Object.assign({}, baseConfig, {
2016-10-19 14:41:20 +00:00
plugins: baseConfig.plugins.concat([
2016-10-11 07:45:00 +00:00
new webpack.DefinePlugin({
'process.env': {
'NODE_ENV': JSON.stringify('production')
}
}),
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
},
2016-10-13 00:56:56 +00:00
mangle: false,
2016-10-11 07:45:00 +00:00
sourceMap: false
2016-11-02 03:25:21 +00:00
}),
new ExtractTextPlugin("[name].[hash].css")
2016-10-19 14:41:20 +00:00
]),
2016-10-12 09:15:59 +00:00
output: {
path: path.join(__dirname, 'public/build'),
publicPath: '/build/',
filename: '[id].[name].[hash].js'
2016-10-19 14:41:20 +00:00
}
2016-10-11 07:45:00 +00:00
});