| 12345678910111213141516171819202122232425262728 | module.exports = {  "presets": [    '@vue/cli-plugin-babel/preset',    [      "@babel/preset-env",      {        "useBuiltIns": "usage",        "corejs": 3      }    ]  ],  "plugins": [    ["component",      {        "libraryName": "element-ui",        "styleLibraryName": "theme-chalk"      }    ]  ],  'env': {    'development': {      // babel-plugin-dynamic-import-node plugin only does one thing by converting all import() to require().      // This plugin can significantly increase the speed of hot updates, when you have a large number of pages.      'plugins': ['dynamic-import-node']    }  }}
 |