Adds v5 routing, middleware, home page rendering, team context sharing, project model/table support, and Flux health reporting. Installs Flux in container builds with role-aware s6 services and documents runtime roles.
11 lines
220 B
JavaScript
11 lines
220 B
JavaScript
import { createInertiaApp } from '@inertiajs/react';
|
|
import '../../css/v5/app.css';
|
|
|
|
createInertiaApp({
|
|
id: 'v5-app',
|
|
pages: {
|
|
path: './Pages',
|
|
extension: '.jsx',
|
|
},
|
|
strictMode: true,
|
|
});
|