mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
21 lines
378 B
JavaScript
21 lines
378 B
JavaScript
const { join } = require('path');
|
|
|
|
module.exports = function () {
|
|
if (process.env.BUILD_TARGET === 'package') {
|
|
return {};
|
|
}
|
|
|
|
return {
|
|
devtool: false,
|
|
entry: {
|
|
'site-mobile': ['./docs/site/entry'],
|
|
'site-desktop': ['./docs/site/entry'],
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'@demo': join(__dirname, 'docs', 'site'),
|
|
},
|
|
},
|
|
};
|
|
};
|