vant/webpack.config.js
2020-07-06 14:58:38 +08:00

13 lines
204 B
JavaScript

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