Skip to content

Commit

Permalink
Merge branch 'master' of github.com:ant-design/ant-design
Browse files Browse the repository at this point in the history
  • Loading branch information
afc163 committed Jul 22, 2015
2 parents b432c9a + 5468ec8 commit e922af5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion webpack.config.min.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ var config = require("./webpack.config.js");

config.plugins = [
new ExtractTextPlugin('[name].min.css'),
new webpack.optimize.UglifyJsPlugin()
new webpack.optimize.UglifyJsPlugin({
output: {
ascii_only: true
}
})
];
config.output.filename = config.output.filename.replace(/\.js$/, ".min.js");
delete config.entry.demo;
Expand Down

0 comments on commit e922af5

Please sign in to comment.