babel.config.js 181 B

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