mirror of
https://github.com/youzan/vant.git
synced 2025-10-16 08:00:34 +00:00
13 lines
203 B
JavaScript
13 lines
203 B
JavaScript
module.exports = function () {
|
|
if (process.env.BUILD_TARGET === 'package') {
|
|
return {};
|
|
}
|
|
|
|
return {
|
|
devtool: false,
|
|
entry: {
|
|
'site-mobile': ['./docs/site/mobile'],
|
|
},
|
|
};
|
|
};
|