babel.config.js 195 B

1234567891011121314
  1. module.exports = {
  2. "presets": [
  3. "@vue/app"
  4. ],
  5. "plugins": [
  6. [
  7. "import",
  8. {
  9. "libraryName": "iview",
  10. "libraryDirectory": "src/components"
  11. }
  12. ]
  13. ]
  14. }