babel.config.js 580 B

12345678910111213141516171819202122
  1. module.exports = {
  2. presets: [
  3. [
  4. '@babel/preset-env',
  5. {
  6. targets: {
  7. node: 'current'
  8. }
  9. }
  10. ]
  11. ],
  12. "plugins": ["transform-vue-jsx"],
  13. env: {
  14. development: {
  15. // babel-plugin-dynamic-import-node plugin only does one thing by converting all import() to require().
  16. // This plugin can significantly increase the speed of hot updates, when you have a large number of pages.
  17. // https://panjiachen.github.io/vue-element-admin-site/guide/advanced/lazy-loading.html
  18. plugins: ['dynamic-import-node']
  19. }
  20. }
  21. };