From ea88e9c3e33e8096a9abe3b6e10f79727127852c Mon Sep 17 00:00:00 2001 From: Eliezer Steinbock <3090527+elie222@users.noreply.github.com> Date: Sat, 22 Feb 2025 23:39:42 +0200 Subject: [PATCH] Fix build --- apps/web/next.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/next.config.mjs b/apps/web/next.config.mjs index 89b4612e0..5125844f4 100644 --- a/apps/web/next.config.mjs +++ b/apps/web/next.config.mjs @@ -8,7 +8,7 @@ import withSerwistInit from "@serwist/next"; const jiti = createJiti(fileURLToPath(import.meta.url)); // Import env here to validate during build. Using jiti we can import .ts files :) -await jiti.import("./env"); +const { env } = await jiti.import("./env"); const withMDX = nextMdx();