uni-preset-vue/template/common/babel.config.js
2018-12-27 18:17:20 +08:00

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
}