在安装了@vitejs/plugin-legacy版本2.x后,运行npm run build进行打包,报错: Cannot destructureproperty'renderBuiltUrl'of'config.experimental'asitisundefined 原因:plugin-legacy版本为2.x后,vite版本需要为3.x版本 "devDependencies": {"@vitejs/plugin-legacy":"^2.1.0","vite":"^3.1.0", ... }...
一、问题: 在做vite + vue3项目,由于前端页面加载过慢,处理vite相关优化时安装相关插件提示的报错信息,在这里记录是方便遇到同样问题的小伙伴能快速解决问题。 编译: npm run build 执行: npm install @vitejs/plugin-vue -D 执行: npm install @vitejs/plugin-vue -D --force or --legacy-peer-deps 二、...
1. npm 下载@vitejs/plugin-legacy 可能会出现问题:Cannot destructure property 'renderBuiltUrl' of 'config.experimental' as it is undefined. 报如下错误的原因是: vite版本和@vitejs/plugin-legacy版本没有对应,因为plugin-legacy版本为2.x后,vite版本需要为3.x版本, 要么升级vite版本3x 要么@vitejs/plugin...
安装依赖是报错如下: npm install @vitejs/plugin-legacy terser-D npmERR!codeERESOLVEnpmERR!ERESOLVEunable to resolve dependency tree npmERR!npmERR!Whileresolving:forum_web@0.0.0npmERR!Found:vite@2.9.15npmERR!node_modules/vite npmERR!dev vite@"^2.8.0"from the root project npmERR!npmERR!Could...
我把该报错项目放在这里了。其使用的是官方 vue3-advanced-demo 修改的后的项目(主要改动点就是 remote 和 host 都加了 @vitejs/plugin-legacy,且 host 加上了 vite-plugin-top-level-await)。 Author VaJoy commented Dec 13, 2022 另外提一下,remote 应用只要使用了 @vitejs/plugin-legacy,都必须给 fil...
hongdapicommentedAug 8, 2024 版本号: 3.7.0 问题描述: 错误截图: 友情提示: 未按格式要求发帖、描述过于简单的,会被直接删掉; 描述问题请图文并茂,方便我们理解并快速定位问题; 如果使用的不是master,请说明你使用的分支; Member zhangdaiscottcommentedAug 9, 2024...
1.首先安装插件:npm i @vitejs/plugin-legacy -D 2.然后配置vite.config.js import legacyPlugin from '@vitejs/plugin-legacy'; export default defineConfig({ plugins: [ legacyPlugin({ targets: ['chrome 52'], // 需要兼容的目标列表,可以设置多个 additionalLegacyPolyfills: ['regenerator-runtime/run...
npm install vite@latest npm install @vitejs/plugin-legacy 使用--legacy-peer-deps标志: 另一个选择是在安装时使用--legacy-peer-deps标志。这将使npm忽略对等依赖项冲突,并尝试继续安装。但请注意,这可能会导致运行时错误,因为某些插件可能无法与你的vite版本一起工作。 npm install @vitejs/plugin-legacy -...
1.首先安装插件:npm i @vitejs/plugin-legacy -D2.然后配置vite.config.js, 如图3.当你build构建的时候,可能会报错: Error: terser not found. Since Vite v3, terser has become an optional dependency. You need to install it. 安装依赖即可: ...
$ npm install @vitejs/plugin-legacy 1. step2: 配置vite.config.js import legacy from '@vitejs/plugin-legacy'; export default defineConfig({ ... plugins: [legacy({ targets: ['defaults', 'not IE 11'] }),vue()], build:{ target: ['es2015', 'chrome63'], // 默认是modules,百度说是...