[Vuejs]-Laravel mix appropriate loader needed

0👍

I think you need to add this script in your index.blade.php

<script src="{{ asset('/js/app.js') }}"></script>

With this you can compiled your assets in your laravel-Mix

hope this is the solution for your problem.

Leave a comment