Extract clusters out of Home into a standalone Clusters page with its own controller action and route. Delete CoolifyCliBootstrap and CoolifyCliVersion services along with the coolifyCliVersion endpoint. Add Dialog component, warning CSS token, Inertia progress bar, and a Clusters nav link. Extend V5Server type with ssh/builder/key fields.
16 lines
316 B
TypeScript
16 lines
316 B
TypeScript
import { createInertiaApp } from '@inertiajs/react';
|
|
import '../../css/v5/app.css';
|
|
|
|
createInertiaApp({
|
|
id: 'v5-app',
|
|
pages: {
|
|
path: './Pages',
|
|
extension: '.tsx',
|
|
},
|
|
strictMode: true,
|
|
progress: {
|
|
delay: 10,
|
|
color: '#fcd452',
|
|
showSpinner: false,
|
|
},
|
|
});
|