1
0
mirror of https://gitee.com/vant-contrib/vant.git synced 2025-04-06 03:57:59 +08:00
vant/webpack.config.js
2020-10-13 19:15:32 +08:00

13 lines
203 B
JavaScript

module.exports = function () {
if (process.env.BUILD_TARGET === 'package') {
return {};
}
return {
devtool: false,
entry: {
'site-mobile': ['./docs/site/mobile'],
},
};
};