Laravel 6.0 app.js only has require('.bootstrap');? Laravel 6.0 app.js only has require('.bootstrap');? vue.js vue.js

Laravel 6.0 app.js only has require('.bootstrap');?


Laravel 6 doesn't ship with frontend scaffolding anymore, they shipped that to a new package called Laravel UI so install it and scaffold VueJS

composer require laravel/uiphp artisan ui vue

And if you need the authentication views like login and register

php artisan ui vue --auth

Docs