摘要: vue3与vite下,element-plus组件库怎么实现按需引入 按需引入意义:减小打包后的包体积 全量引入 // main.js import ElementPlus from 'element-plus'; import 'element-plus/dist/index.css'; impo 阅读全文
posted @ 2022-09-15 18:20 小菜菜爱吃菜 阅读(473) 评论(0) 推荐(0) 编辑
摘要: 在安装了@vitejs/plugin-legacy版本2.x后,运行npm run build进行打包,报错: Cannot destructure property 'renderBuiltUrl' of 'config.experimental' as it is undefined 原因:pl 阅读全文
posted @ 2022-09-15 11:35 小菜菜爱吃菜 阅读(2120) 评论(0) 推荐(0) 编辑
摘要: 安装依赖 @vitejs/plugin-legacy 2.x版本,需要vite3.x版本 yarn add @vitejs/plugin-legacy -D 修改vite.config.js相配置 import legacy from '@vitejs/plugin-legacy'; export 阅读全文
posted @ 2022-09-15 11:33 小菜菜爱吃菜 阅读(1735) 评论(0) 推荐(0) 编辑