I have a web app with laravel and vuejs. I use laravel-mix and in my webpack.mix.js I have:
mix.js('resources/assets/js/app.js', 'public/js') In the view I have
<script src="{{mix('js/app.js')}}"></script> But it still does not run, I think it could be interfered by <base href="{{asset('')}}"> card.
I run npm run watch but still no error message. In my website app.js can run but the other libraries get lost.