Back to Zitadel

App Config

apps/docs/content/guides/start/_app_config.mdx

5.0.0-base811 B
Original Source

export default function AppConfig({ redirectUrl, postLogoutRedirectUrl }) { return ( <div> <ul> <li> <b>Auth Strategy</b>: <a href="/docs/apis/openidoauth/grant-types#authorization-code">Authorization Code Flow (PKCE)</a>. This modern standard ensures tokens are exchanged securely without needing a client secret in your frontend. </li> <li><b>Redirect URIs</b>: These define where users return after authentication: <ul> <li>Redirect URI: {redirectUrl} (Landing page after login)</li> <li>Post Logout URI: {postLogoutRedirectUrl} (Landing page after logout)</li> </ul> </li> </ul> </div>

); }