[Vuejs]-Component not found when deploy on Netlify

0👍

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'

Leave a comment