hedgedoc/webpack.production.js

29 lines
807 B
JavaScript
Raw Normal View History

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