A Laravel front-end scaffolding preset for Tailwind CSS - a Utility-First CSS Framework for Rapid UI Development.
Current version: Tailwind CSS 0.6.5
- Fresh install Laravel >= 5.7.0 and cd to your app.
- Install this preset via
composer require laravel-frontend-presets/tailwindcss
. Laravel will automatically discover this package. No need to register the service provider. - Use
php artisan preset tailwindcss
for the basic Tailwind CSS preset OR usephp artisan preset tailwindcss-auth
for the basic preset, auth route entry and Tailwind CSS auth views in one go. (NOTE: If you run this command several times, be sure to clean up the duplicate Auth entries inroutes/web.php
) npm install && npm run dev && npm run dev
(this is required twice, due to the way thatlaravel-mix-tailwind
installs the Tailwind CSS dependency)- Configure your favorite database (mysql, sqlite etc.)
php artisan migrate
to create basic user tables.php artisan serve
(or equivalent) to run server and test preset.
The default tailwind.js
configuration file included by this package simply uses the config from the Tailwind vendor files. Should you wish to make changes, you should remove the file and run node_modules/.bin/tailwind init
, which will generate a fresh configuration file for you, which you are free to change to suit your needs.