mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
10 lines
288 B
JavaScript
10 lines
288 B
JavaScript
var webpack = require('webpack');
|
|
|
|
module.exports = {
|
|
plugins: [
|
|
new webpack.optimize.OccurenceOrderPlugin(),
|
|
new webpack.optimize.UglifyJsPlugin({ compress: { warnings: false } }),
|
|
new webpack.DefinePlugin({ 'process.env.NODE_ENV': '"production"' })
|
|
]
|
|
};
|