A Laravel preset that scaffolds out new applications just the way I like 'em 👌🏻
What it includes:
- Tailwind CSS
- postcss-nesting for nested CSS support
- Purgecss, via spatie/laravel-mix-purgecss
- Vue.js
- Removes Bootstrap and jQuery
- Adds compiled assets to
.gitignore
- Adds a simple Tailwind-tuned default layout template
- Replaces the
welcome.blade.php
template with one that extends the main layout - Add Italian lang files
This package isn't on Packagist (yet), so to get started, add it as a repository to your composer.json
file:
"repositories": [
{
"type": "vcs",
"url": "https://github.com/anmartini/laravel-preset"
}
]
Next, run this command to add the preset to your project:
composer require anmartini/laravel-preset --dev
Finally, apply the scaffolding by running:
php artisan preset anmartini
This package is forked from Adam Wathan's Laravel Frontend Preset