This commit is contained in:
2025-11-25 09:36:03 +08:00
parent d5c2ed3d85
commit 10937addac
10 changed files with 839 additions and 6 deletions

7
src/app.ts Normal file
View File

@@ -0,0 +1,7 @@
import { App } from "@kevisual/router";
import { useContextKey } from "@kevisual/use-config/context";
export const app: App = useContextKey<App>('app', new App({
serverOptions: {
path: '/client/router'
}
}));