This commit is contained in:
ct
2025-07-15 04:21:15 +08:00
parent 50d31aad9d
commit 66511e2b01
3 changed files with 52 additions and 46 deletions

View File

@@ -24,7 +24,7 @@ public function index()
]; ];
}); });
return Inertia::render('home/home', [ return Inertia::render('home', [
'stats' => $stats, 'stats' => $stats,
]); ]);
} }

View File

@@ -1,23 +1,33 @@
import '../css/app.css';
import { createInertiaApp } from '@inertiajs/react'; import { createInertiaApp } from '@inertiajs/react';
import createServer from '@inertiajs/react/server';
import { resolvePageComponent } from 'laravel-vite-plugin/inertia-helpers'; import { resolvePageComponent } from 'laravel-vite-plugin/inertia-helpers';
import { hydrateRoot } from 'react-dom/client'; import ReactDOMServer from 'react-dom/server';
import { ErrorBoundary } from 'react-error-boundary'; import { ErrorBoundary } from 'react-error-boundary';
import { Toaster } from 'sonner';
import { GA4Provider } from '@/plugins/GA4Context.jsx'; // Updated import import { type RouteName, route } from 'ziggy-js';
import DetailedErrorFallback from './components/custom/detailed-error-fallback'; // Import your component
import { Toaster } from './components/ui/sonner';
import { AxiosProvider } from './plugins/AxiosContext'; import { AxiosProvider } from './plugins/AxiosContext';
import { GA4Provider } from './plugins/GA4Context';
import { MittProvider } from './plugins/MittContext'; import { MittProvider } from './plugins/MittContext';
const appName = import.meta.env.VITE_APP_NAME || 'Laravel'; const appName = import.meta.env.VITE_APP_NAME || 'Laravel';
createServer((page) =>
createInertiaApp({ createInertiaApp({
page,
render: ReactDOMServer.renderToString,
title: (title) => `${title} - ${appName}`, title: (title) => `${title} - ${appName}`,
resolve: (name) => resolvePageComponent(`./pages/${name}.tsx`, import.meta.glob('./pages/**/*.tsx')), resolve: (name) => resolvePageComponent(`./pages/${name}.tsx`, import.meta.glob('./pages/**/*.tsx')),
setup({ el, App, props }) { setup: ({ App, props }) => {
const root = hydrateRoot(el); /* eslint-disable */
// @ts-expect-error
global.route<RouteName> = (name, params, absolute) =>
route(name, params as any, absolute, {
// @ts-expect-error
...page.props.ziggy,
// @ts-expect-error
location: new URL(page.props.ziggy.location),
});
/* eslint-enable */
const app = ( const app = (
<ErrorBoundary <ErrorBoundary
@@ -46,11 +56,7 @@ createInertiaApp({
</ErrorBoundary> </ErrorBoundary>
); );
root.render(app); return app;
}, },
progress: { }),
color: '#4B5563', );
},
});
// Theme is now handled by useTheme hook in components