
前端工程化
梦凡尘
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
vue3+vite Cannot find module ‘@/XXXXXX‘ or its corresponding type declarations
在使用vue3+vite 创建新的工程时会出现Connot find module '@/xxx'错误,根本原因是vite 中没有配置跟目录别名导致的,可以在vite.config.ts 中增加如下配置。如果tsconfig.json中增加了references属性,则要在references引用的文件中都增加paths配置即可。如果在tsconfig.json中增加。原创 2025-04-11 11:19:47 · 689 阅读 · 0 评论 -
Cannot find module ‘vue‘ or its corresponding type declarations
在使用vue3+vite创建新的工程时,在新增.vue文件时会出现Cannot find module 'vue'这个错误。只需要我们在项目中的.d.ts文件中添加以下代码即可。原创 2025-04-11 10:57:24 · 821 阅读 · 0 评论