mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
21 lines
353 B
JavaScript
21 lines
353 B
JavaScript
var webpack = require('webpack');
|
|
var config = require('./webpack.build.js');
|
|
|
|
config.entry = {
|
|
'index': './src/index.js'
|
|
};
|
|
|
|
config.plugins = config.plugins.concat([
|
|
new webpack.optimize.UglifyJsPlugin({
|
|
compress: {
|
|
warnings: false
|
|
},
|
|
output: {
|
|
comments: false
|
|
},
|
|
sourceMap: false
|
|
})
|
|
]);
|
|
|
|
module.exports = config;
|