I'm creating a Laravel project running Vue on the frontend.
When running Laravel or Metronic Vue by themselves I got it working, but not when trying to integrate Metronic Vue with Laravel. I followed this guide: https://devs.keenthemes.com/question/laravel-9-vue-with-vite-integration-metronic-v816
I have all the listed requirements in the guide installed, and I get as far as having the page running with the Metronic logo showing, but with these errors in the browser console:
GET ...:5173/resources/js/core/plugins/i18n net::ERR_ABORTED 404 (Not Found) main.ts:8
GET ...:5173/resources/js/core/services/ApiService net::ERR_ABORTED 404 (Not Found) main.ts:9
GET ...:5173/resources/js/core/plugins/apexcharts net::ERR_ABORTED 404 (Not Found) main.ts:10
GET ...:5173/resources/js/core/plugins/inline-svg net::ERR_ABORTED 404 (Not Found) main.ts:11
GET ...:5173/resources/js/core/plugins/vee-validate net::ERR_ABORTED 404 (Not Found) main.ts:12
GET ...:5173/resources/js/core/plugins/keenthemes net::ERR_ABORTED 404 (Not Found) main.ts:13
GET ...:5173/resources/js/core/plugins/prismjs net::ERR_ABORTED 404 (Not Found) index.ts:5
GET ...:5173/resources/js/stores/auth net::ERR_ABORTED 404 (Not Found) index.ts:6
GET ...:5173/resources/js/stores/config net::ERR_ABORTED 404 (Not Found) App.vue:4
GET ...:5173/resources/js/stores/theme net::ERR_ABORTED 404 (Not Found) App.vue:5
GET ...:5173/resources/js/stores/body net::ERR_ABORTED 404 (Not Found) App.vue:6
GET ...:5173/resources/js/core/helpers/config net::ERR_ABORTED 404 (Not Found)
When checking the console, these files are indeed missing. Guessing it's a problem with them not getting "transpiled", but any ideas what could be causing it?
Tried this tutorial, and a few other similar ones, but didn't find any other with the exakt same problem so expected to get it working, but haven't.