// Babel配置文件,用于将ES6+代码转换为浏览器兼容的JavaScript代码
// 使用了`@vue/cli-plugin-babel/preset`预设
// 并在开发环境下启用了`dynamic-import-node`插件,以提高热更新的速度。
module.exports = {
presets: [
// https://github.com/vuejs/vue-cli/tree/master/packages/@vue/babel-preset-app
'@vue/cli-plugin-babel/preset'
],
'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']
}
}
}
babel.config.js
于 2024-03-31 22:49:39 首次发布
文章介绍了如何在VueCLI项目中使用Babel配置文件,特别提到了`@vue/cli-plugin-babel/preset`预设和`dynamic-import-node`插件,以提升开发环境中的动态导入功能,加快热更新速度。
摘要由CSDN通过智能技术生成