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 cbb8b03 commit 7b73fd7Copy full SHA for 7b73fd7
apps/api/src/index.ts
@@ -45,7 +45,6 @@ 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,
@@ -57,6 +56,7 @@ const app = new Elysia()
57
56
],
58
59
)
+ .use(publicApi)
60
.use(health)
61
.onBeforeHandle(function startTrace({ request, path, store }) {
62
const method = request.method;
0 commit comments