mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
13 lines
246 B
JavaScript
13 lines
246 B
JavaScript
var webpack = require('webpack');
|
|
var config = require('./webpack.config');
|
|
|
|
delete config.devtool;
|
|
config.plugins.push(new webpack.optimize.UglifyJsPlugin({
|
|
sourceMap: false,
|
|
output: {
|
|
ascii_only: true
|
|
}
|
|
}));
|
|
|
|
module.exports = config;
|