mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
33 lines
705 B
JavaScript
33 lines
705 B
JavaScript
const path = require('path');
|
|
const webpack = require('webpack');
|
|
const config = require('./webpack.config.dev.js');
|
|
const isMinify = process.argv.indexOf('-p') !== -1;
|
|
|
|
module.exports = Object.assign({}, config, {
|
|
mode: 'production',
|
|
entry: {
|
|
'vant': './packages/index.js'
|
|
},
|
|
output: {
|
|
path: path.join(__dirname, '../es'),
|
|
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'
|
|
}
|
|
},
|
|
plugins: [],
|
|
performance: false,
|
|
optimization: {
|
|
minimize: isMinify
|
|
}
|
|
});
|