This commit is contained in:
2025-12-02 09:00:25 +08:00
commit 081add5316
43 changed files with 8641 additions and 0 deletions

7
backend/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'
}
}));