We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27a3ee8 commit 08b7451Copy full SHA for 08b7451
apps/api/src/index.ts
@@ -45,6 +45,7 @@ const app = new Elysia()
45
activeContext: null as ReturnType<typeof context.active> | null | undefined,
46
startTime: 0,
47
})
48
+ .use(publicApi)
49
.use(
50
cors({
51
credentials: true,
@@ -56,7 +57,6 @@ const app = new Elysia()
56
57
],
58
59
)
- .use(publicApi)
60
.use(health)
61
.onBeforeHandle(function startTrace({ request, path, store }) {
62
const method = request.method;
0 commit comments