DEV Community

Discussion on: How To Install Bootstrap 5 and Vue 3 in Laravel 8.

Collapse
 
caiowilson profile image
Caio Wilson

I think you'd have to add the vue loader to the laravel mix
mix.js('resources/js/app.js', 'public/js')
.vue() // <--- here inside your webpack.mix.js
.sass('resources/sass/app.scss', 'public/css')
.sourceMaps();

I did.
thanks anyway!