Compare commits

...

3 Commits

Author SHA1 Message Date
pablodanswer
dc089d6842 p 2025-01-25 18:16:21 -08:00
pablodanswer
ef1fc19de7 k 2025-01-25 18:16:01 -08:00
pablodanswer
842fcf4156 update 2025-01-25 18:15:32 -08:00
2 changed files with 3 additions and 3 deletions

View File

@@ -78,7 +78,7 @@ ENV NEXT_PUBLIC_GTM_ENABLED=${NEXT_PUBLIC_GTM_ENABLED}
ARG NEXT_PUBLIC_FORGOT_PASSWORD_ENABLED
ENV NEXT_PUBLIC_FORGOT_PASSWORD_ENABLED=${NEXT_PUBLIC_FORGOT_PASSWORD_ENABLED}
RUN npx next build
RUN NODE_OPTIONS="--max-old-space-size=8192" npx next build
# Step 2. Production image, copy all the files and run next
FROM base AS runner

View File

@@ -205,9 +205,9 @@ export default async function RootLayout({
>
<Suspense fallback={null}>
<PostHogPageView />
{process.env.NEXT_PUBLIC_POSTHOG_KEY && <WebVitals />}
{children}
</Suspense>
{children}
{process.env.NEXT_PUBLIC_POSTHOG_KEY && <WebVitals />}
</AppProvider>
);
}