This starter template includes:
- Laravel 9
- Vite
- Solid
- Tailwind CSS (w/
@tailwindcss/forms) - Axios
- TypeScript
- The app is located in
resources/js/. - You can use
resources/css/for styling.
Install the composer dependencies:
composer installMake a copy of the .env.example file named .env:
cp .env.example .envGenerate an app key:
php artisan key:generateInstall all package.json dependencies:
npm installRun vite to serve your assets/bundle:
npm run devOpen a new terminal instance and serve the application:
php artisan serveBuild the app:
npm run buildNow all you have to do is serve the Laravel app in a production environment.