标签:res tor test rar 测试 code 测试环境 相关 官网
为了提升打包速度以及跟上主流技术步伐,前段时间把项目的webpack 升级到4.0版本以上
webpack 官网:https://webpack.js.org/
通常上面的报错很容易找到解决方案
通常这是因为之前babel 卸载的不完整导致的,先把babel 相关的插件全都卸载,然后在安装新版本的插件。
dynamic-import-webpack
完整babel 配置如下
{ "presets": ["@babel/preset-env"], // "presets": [ // ["env", { // "modules": false, // "useBuiltIns": "entry" // }], // "@babel/preset-env" // ], "plugins": [ [ "@babel/plugin-transform-runtime", { "absoluteRuntime": false, "corejs": false, "helpers": true, "regenerator": true, "useESModules": false } ], "@babel/plugin-syntax-dynamic-import", "@babel/plugin-proposal-object-rest-spread", "transform-vue-jsx", "dynamic-import-webpack", [ "component", { "libraryName": "element-ui", "styleLibraryName": "theme-chalk" } ] ], "env": { "test": { "presets": ["env", "stage-2"], "plugins": ["istanbul"] } } }
"plugins": [ "@babel/plugin-transform-runtime", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-proposal-object-rest-spread", "transform-vue-jsx" ]
很多loader、插件都升级到了最新版,在未升级之前发一次测试环境要7分钟以上。升级之后发一次测试环境大概2分钟到3分钟左右。这次升级主要还是为了vue3.0,哈哈。希望赶紧来吧vue3.0。
标签:res tor test rar 测试 code 测试环境 相关 官网
原文地址:https://www.cnblogs.com/CandyManPing/p/11075042.html