mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-23 01:58:29 +00:00
11 lines
246 B
JavaScript
11 lines
246 B
JavaScript
var webpack = require('webpack');
|
|
|
|
module.exports = {
|
|
plugins: [
|
|
new webpack.optimize.UglifyJsPlugin({
|
|
minimize: true,
|
|
mangle: false // Due to https://github.com/angular/angular/issues/6678
|
|
})
|
|
]
|
|
};
|