mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
13 lines
342 B
JavaScript
13 lines
342 B
JavaScript
var webpack = require('webpack');
|
|
|
|
module.exports = {
|
|
plugins: [
|
|
new webpack.optimize.OccurenceOrderPlugin(),
|
|
new webpack.optimize.UglifyJsPlugin({
|
|
compress: { warnings: false },
|
|
minimize: true,
|
|
mangle: false // Due to https://github.com/angular/angular/issues/6678
|
|
})
|
|
]
|
|
};
|