babel.config.js 384 B

12345678910111213141516171819
  1. module.exports = {
  2. presets: [
  3. '@vue/app'
  4. ],
  5. plugins: [
  6. [
  7. "component",
  8. {
  9. "libraryName": "element-ui",
  10. "styleLibraryName": "theme-chalk"
  11. }
  12. ],
  13. ["import", {
  14. "libraryName": "vant",
  15. "libraryDirectory": "es",
  16. "style": true
  17. }]
  18. ]
  19. };