babel.config.js 352 B

123456789101112131415161718192021
  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. //Fixme: not valid
  14. staging: {
  15. plugins: ["transform-remove-console"]
  16. },
  17. production: {
  18. plugins: ["transform-remove-console"]
  19. }
  20. }
  21. };