mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
* [bugfix] CouponList always show empty info * [bugfix] add click feedback of buttons in components * [Doc] add custom theme document * [new feature] Notice bar support more props * [bugfix] PullRefresh test cases * [bugfix] unused NoticeBar style * [bugfix] Swipe width calc error * [Doc] english document of all action components * [Doc] change document site path to /zanui/vant * [Doc] fix
33 lines
789 B
JavaScript
33 lines
789 B
JavaScript
const webpack = require('webpack');
|
|
const merge = require('webpack-merge');
|
|
const path = require('path');
|
|
const devConfig = require('./webpack.config.dev.js');
|
|
|
|
module.exports = merge(devConfig, {
|
|
output: {
|
|
path: path.join(__dirname, '../docs/dist'),
|
|
publicPath: 'https://b.yzcdn.cn/zanui/vant/',
|
|
filename: '[name].[hash:8].js',
|
|
umdNamedDefine: true,
|
|
chunkFilename: 'async_[name].[chunkhash:8].js'
|
|
},
|
|
devtool: false,
|
|
plugins: [
|
|
new webpack.DefinePlugin({
|
|
'process.env': {
|
|
NODE_ENV: JSON.stringify(process.env.NODE_ENV)
|
|
}
|
|
}),
|
|
new webpack.optimize.UglifyJsPlugin({
|
|
compress: {
|
|
warnings: false,
|
|
drop_console: true
|
|
},
|
|
output: {
|
|
comments: false
|
|
},
|
|
sourceMap: false
|
|
})
|
|
]
|
|
});
|