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

书写 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 后就可以了
import 'element-plus/theme-chalk/index.css' // 去掉lib 后就可以了(写成这样也可以)
main.js
[vite] Internal server error: Failed to resolve import “../node_modules/element-plus/lib/theme-chalk_第1张图片
element 引入成功:
[vite] Internal server error: Failed to resolve import “../node_modules/element-plus/lib/theme-chalk_第2张图片

你可能感兴趣的:(javascript,css,前端,html,开发语言)