From 387da5dbdd00992a6b7ca8df35cbac3380fdb3cd Mon Sep 17 00:00:00 2001 From: ItzCrazyKns <95534749+ItzCrazyKns@users.noreply.github.com> Date: Sat, 11 Oct 2025 18:00:31 +0530 Subject: [PATCH] feat(instrumentation): run config migrations --- src/instrumentation.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/instrumentation.ts b/src/instrumentation.ts index cd85715..cff0d44 100644 --- a/src/instrumentation.ts +++ b/src/instrumentation.ts @@ -7,5 +7,7 @@ export const register = async () => { } catch (error) { console.error('Failed to run database migrations:', error); } + + await import('./lib/config/index'); } };