AuthConfigPage() — supabase Function Reference
Architecture documentation for the AuthConfigPage() function in page.tsx from the supabase codebase.
Entity Profile
Dependency Diagram
graph TD bae5fa46_b7dd_60ca_c4e9_8b3e0ddd51b5["AuthConfigPage()"] 70c06384_8dda_31de_ba22_ce75a80729a6["newEditLink()"] bae5fa46_b7dd_60ca_c4e9_8b3e0ddd51b5 -->|calls| 70c06384_8dda_31de_ba22_ce75a80729a6 style bae5fa46_b7dd_60ca_c4e9_8b3e0ddd51b5 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/docs/app/guides/self-hosting/auth/config/page.tsx lines 17–60
const AuthConfigPage = async () => {
const descriptionMdx = specAuthV1.info.description
return (
<GuideTemplate
meta={meta}
editLink={newEditLink(
'supabase/supabase/blob/master/apps/docs/app/guides/(with-sidebar)/self-hosting/auth/config/page.tsx'
)}
>
<MDXRemoteBase source={descriptionMdx} />
<div>
{specAuthV1.info.tags.map((tag: ReturnType<typeof specAuthV1>['info']['tags']) => {
return (
<>
<h2 className="text-foreground">{tag.title}</h2>
<p className="text-foreground-lighter">{tag.description}</p>
<div className="not-prose">
<h5 className="text-base text-foreground mb-3">Parameters</h5>
<ul>
{specAuthV1.parameters
.filter((param: ReturnType<typeof specAuthV1>['parameters']) =>
param.tags.includes(tag.id)
)
.map((param: ReturnType<typeof specAuthV1>['parameters']) => {
return (
<Param
name={param.title}
type={param.type}
description={param.description}
required={param.required}
/>
)
})}
</ul>
</div>
</>
)
})}
</div>
</GuideTemplate>
)
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does AuthConfigPage() do?
AuthConfigPage() is a function in the supabase codebase.
What does AuthConfigPage() call?
AuthConfigPage() calls 1 function(s): newEditLink.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free