diff --git a/readme.md b/readme.md index 304941c..f931ff5 100644 --- a/readme.md +++ b/readme.md @@ -10,15 +10,15 @@ This is a Laravel front-end preset for Tailwind CSS. This preset will replace th ### Installation -> **Warning**: Installing this preset will **overwrite** your existing views and assets, and should only be installed on a fresh installation of Laravel. Please use with caution. +> **Warning**: Installing this preset will **overwrite** your existing views and assets, and should only be installed on a fresh instance of Laravel. Please use with caution. -To install this preset, you must first require the composer dependency. Laravel will automatically register the service provider for you. +To install this preset, you must first require the composer dependency in your application. Laravel will automatically register the service provider for you. ``` composer require zaknesler/tailwind-preset ``` -Next, install either the `tailwind` or the `tailwind-auth` preset. The `tailwind-auth` preset includes authentication views, routes, and a controller. +Now, install either the `tailwind` or the `tailwind-auth` preset. The `tailwind-auth` preset includes the authentication scaffolding normally generated when `php artisan make:auth` is executed. ``` php artisan preset tailwind @@ -42,8 +42,4 @@ Now you can compile the assets using any of the Laravel build scripts (dev, prod yarn dev // npm run dev ``` -Ensure that your database is properly configured and migrated, and you're done! At this point, you may remove the composer dependency, as it is no longer needed. - -``` -composer remove zaknesler/tailwind-preset -``` +Ensure that your database is properly configured and migrated, and you're done!