mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
34 lines
659 B
JavaScript
34 lines
659 B
JavaScript
const path = require('path');
|
|
const config = require('./webpack.dev.js');
|
|
|
|
const isMinify = process.argv.indexOf('-p') !== -1;
|
|
|
|
delete config.serve;
|
|
|
|
module.exports = Object.assign(config, {
|
|
mode: 'production',
|
|
entry: {
|
|
vant: './es/index.js'
|
|
},
|
|
output: {
|
|
path: path.join(__dirname, '../lib'),
|
|
library: 'vant',
|
|
libraryTarget: 'umd',
|
|
filename: isMinify ? '[name].min.js' : '[name].js',
|
|
umdNamedDefine: true,
|
|
globalObject: 'this'
|
|
},
|
|
externals: {
|
|
vue: {
|
|
root: 'Vue',
|
|
commonjs: 'vue',
|
|
commonjs2: 'vue',
|
|
amd: 'vue'
|
|
}
|
|
},
|
|
performance: false,
|
|
optimization: {
|
|
minimize: isMinify
|
|
}
|
|
});
|