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'],
},
};
};