mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
9 lines
195 B
JavaScript
9 lines
195 B
JavaScript
var webpack = require('webpack');
|
|
|
|
module.exports = {
|
|
plugins: [
|
|
new webpack.optimize.OccurenceOrderPlugin(),
|
|
new webpack.optimize.UglifyJsPlugin({ minimize: true })
|
|
]
|
|
};
|