babel.config.js 263 B

1234567891011121314151617
  1. module.exports = {
  2. presets: ["@vue/app"],
  3. plugins: [
  4. [
  5. "import",
  6. {
  7. libraryName: "iview",
  8. libraryDirectory: "src/components"
  9. }
  10. ]
  11. ],
  12. env: {
  13. production: {
  14. plugins: ["transform-remove-console"]
  15. }
  16. }
  17. };