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 5e22c8b commit be2d220Copy full SHA for be2d220
src/app/auth/signin/page.tsx
@@ -9,8 +9,11 @@ import MessageLinkFooter from "@/common/ui/MessageLinkFooter"
9
10
const SITE_NAME = env.getOrThrow("FRAMNA_DOCS_TITLE")
11
const HELP_URL = env.get("FRAMNA_DOCS_HELP_URL")
12
+
13
+// Force page to be rendered dynamically to ensure we read the correct values for the environment variables.
14
+export const dynamic = "force-dynamic"
15
-export default async function SignInPage() {
16
+export default async function Page() {
17
return (
18
<Box display="flex" height="100vh">
19
<InfoColumn/>
0 commit comments