According to Taylor Otwell, we'll have new options for frontend scaffolding in Laravel 5.5.

Laravel frontend presets

If we want to use React, instead of Vue.js, simply run this command to generate React components:

artisan preset react

We can also generate Bootstrap CSS files by using:

artisan preset bootstrap

If we don't want to use any frontend scaffolding, we can remove them all by using:

artisan preset none

These new options are a great time saver!