[vite] Internal server error: Failed to resolve import "../node_modules/element-plus/lib/theme-


书写 vue3 + vite + element plus 时 引入 element css报错: [vite] Internal server error: Failed to resolve import "../node_modules/element-plus/lib/theme-chalk/index.css" from "src\main.js". Does the file exist?   检查后得知: import '../node_modules/element-plus/lib/theme-chalk/index.css'  //  多了层 lib 文件夹   import '../node_modules/element-plus/theme-chalk/index.css' // 去掉lib 后就可以了   总结: 当出现问题时要仔细看报的什么错误,根据错误一层一层看一看   注意用相对路径,绝对路径引入有bug    main.js   element 引入成功:     稳的一批,整起来
vue