mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
20 lines
439 B
JavaScript
20 lines
439 B
JavaScript
var webpack = require('webpack');
|
|
var getPostcssPlugin = require('./utils/postcss_pipe');
|
|
var config = require('./webpack.config.js');
|
|
|
|
config.output.filename = config.output.filename.replace(/\.js$/, '.min.js');
|
|
|
|
config.plugins = config.plugins.concat([
|
|
new webpack.optimize.UglifyJsPlugin({
|
|
compress: {
|
|
warnings: false
|
|
},
|
|
output: {
|
|
comments: false
|
|
},
|
|
sourceMap: false
|
|
})
|
|
]);
|
|
|
|
module.exports = config;
|