vant/webpack.config.js
2021-03-17 09:22:33 +08:00

13 lines
227 B
JavaScript

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