2026-06-15 21:09:49 +00:00
|
|
|
import { createInertiaApp } from '@inertiajs/react';
|
|
|
|
|
import '../../css/v5/app.css';
|
|
|
|
|
|
|
|
|
|
createInertiaApp({
|
|
|
|
|
id: 'v5-app',
|
|
|
|
|
pages: {
|
|
|
|
|
path: './Pages',
|
2026-06-16 18:15:36 +00:00
|
|
|
extension: '.tsx',
|
2026-06-15 21:09:49 +00:00
|
|
|
},
|
|
|
|
|
strictMode: true,
|
|
|
|
|
});
|