babel.config.js 205 B

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