app.tsx 254 B

12345678910
  1. import { createInertiaApp } from '@inertiajs/react';
  2. const appName = import.meta.env.VITE_APP_NAME || 'Laravel';
  3. createInertiaApp({
  4. title: (title) => (title ? `${title} - ${appName}` : appName),
  5. progress: {
  6. color: '#4B5563',
  7. },
  8. });