initial commit

This commit is contained in:
sockenklaus
2023-06-30 01:29:26 +02:00
commit 6b7fd89313
44 changed files with 29969 additions and 0 deletions

17
start/inertia.ts Normal file
View File

@@ -0,0 +1,17 @@
/*
|--------------------------------------------------------------------------
| Inertia Preloaded File
|--------------------------------------------------------------------------
|
| Any code written inside this file will be executed during the application
| boot.
|
*/
import Inertia from '@ioc:EidelLev/Inertia';
Inertia.share({
errors: (ctx) => {
return ctx.session.flashMessages.get('errors');
},
}).version(() => Inertia.manifestFile('public/assets/manifest.json'));