I working on laravel 10 project and I want install authentication starter kit but php artisan breeze:install vue
install also inertia
How I can install Laravel Breeze
without installing inertia
?
Asked
Active
Viewed 495 times
1

MAHA OUEGHLANI
- 124
- 13
-
Inertia should only be installed if you're using Breeze with Vue/React, if you're using blade templates it shouldn't be used. From the docs - "Laravel Breeze's *default view layer* is made up of simple Blade templates styled with Tailwind CSS. Or, Breeze can scaffold your application using Vue or React and Inertia." – Andy Holmes Apr 07 '23 at 09:13
-
@AndyHolmes OK , there is a way now to cancel this command `php artisan breeze:install vue` and go back to previous version ?? I don't use git yet – MAHA OUEGHLANI Apr 07 '23 at 09:18
-
2Just delete the files from vendor etc. and install it fresh, you'd be better off getting up and running with git sooner than later so you can easily roll back – Andy Holmes Apr 07 '23 at 09:23
-
Delete vendor folder. Remove `laravel/breeze` from `composer.json`. Run `composer install` and then run `composer require laravel/breeze --dev` and `php artisan breeze:install` without the `vue` part! – geertjanknapen Apr 07 '23 at 09:25
-
@geertjanknapen Can I run `composer remove laravel/breeze` without deleting vendor folder ? – MAHA OUEGHLANI Apr 07 '23 at 09:28
-
@MAHAOUEGHLANI You can but that won't remove the files the `php artisan breeze:install` has created, therefore not 'fully' deleting the Inertia stuff. Best to just delete vendor folder. – geertjanknapen Apr 07 '23 at 09:34
-
@geertjanknapen also delete vendor folder won't delete files created in resourses / controllers ... – MAHA OUEGHLANI Apr 07 '23 at 09:45
-
1You can look here to see what files are created when you run with the `vue` stack option, if you want to delete them manually; https://github.com/laravel/breeze/blob/1.x/src/Console/InstallsInertiaStacks.php#L15 – geertjanknapen Apr 07 '23 at 09:51