[Vuejs]-Github workflow build and deploy to staging error

0👍

Module not found: Error: Can't resolve '../../../dist/@core/components/feather-icon/FeatherIcon.vue' in 'pages/Artisan/detail'

Here, in your code, you’re importing an icon from the dist folder. You’re probably ignoring that folder when you push to Github. That’s why it can’t find it. You should import directly from the Feather Icons library.

Leave a comment