gohttpdUi/babel.config.js

19 lines
288 B
JavaScript
Raw Normal View History

2020-12-14 17:32:37 +08:00
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset', [
'@babel/preset-env', {
modules: false
}
]
],
plugins: [
[
'component',
{
'libraryName': 'element-plus',
'styleLibraryName': 'theme-chalk'
}
]
2021-01-17 15:44:49 +08:00
]
2020-12-14 17:32:37 +08:00
}