'component not found when deploy on Netlify
I'm trying to deploy my test app site build with Vite and Vue 3 on Netlify. It´s a very simple project, with two pages and simple components. Building in my laptop works fine, but not when I try to deploy it.
Local
But in Netlify
I don't really know how to solve this. My source code is here
Any help would be appreciated! Thanks in advance
Solution 1:[1]
Thanks to Ifaruki, the solution was easy (a typo change):
I have to change my import in App.vue from this :
import Navbar from '@/components/Navbar.vue'
to
import Navbar from '@/components/NavBar.vue'
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Aw3same |


