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