mirror of
https://gitee.com/dcloud/uni-preset-vue
synced 2025-04-05 21:41:53 +08:00
25 lines
532 B
JavaScript
25 lines
532 B
JavaScript
const plugins = []
|
|
process.UNI_LIBRARIES = process.UNI_LIBRARIES || ['uni-ui']
|
|
process.UNI_LIBRARIES.forEach(libraryName => {
|
|
plugins.push([
|
|
'import',
|
|
{
|
|
'libraryName': libraryName,
|
|
'customName': (name) => {
|
|
return `${libraryName}/lib/${name}/${name}`
|
|
}
|
|
}
|
|
])
|
|
})
|
|
module.exports = {
|
|
presets: [
|
|
[
|
|
'@vue/app',
|
|
{
|
|
useBuiltIns: 'entry'
|
|
}
|
|
]
|
|
],
|
|
plugins
|
|
}
|