Laravel React Jsx Boilerplate

PHP

Production-ready Laravel 13 + React 19 boilerplate with Inertia.js v3, Vite, Tailwind CSS v4, SSR support, and powerful Artisan generators for scalable SaaS and dashboard applications.

Stars
18
Forks
0
Downloads
4,356
Open Issues
0
Files main

Repository Files

Loading file structure...
resources/js/app.jsx
import { createInertiaApp } from '@inertiajs/react';
import { initializeTheme } from '@/hooks/use-appearance';

const appName = import.meta.env.VITE_APP_NAME || 'Laravel';

createInertiaApp({
    title: (title) => (title ? `${title} - ${appName}` : appName),
    strictMode: true,
    progress: {
        delay: 0,
        color: '#4B5563',
    },
});

initializeTheme();