This repository has been archived on 2025-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
Files
web/babel.config.js
2021-12-14 15:39:52 +08:00

13 lines
242 B
JavaScript

module.exports = {
presets: [
'@vue/app',
'@babel/preset-typescript'
],
plugins: [
["component", {
"libraryName": "element-ui",
"styleLibraryName": "theme-chalk"
}]
]
};