Skip to content

Commit 5eaa898

Browse files
authored
Specified baseURL for Allowed Logout URLs
Updated logout documentation to instruct developers to add the full baseURL (e.g. http://localhost:3000) to the Allowed Logout URLs in Auth0 Application Settings.
1 parent a27ab75 commit 5eaa898

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/quickstart/webapp/nextjs/01-login.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ and visit http://localhost:3000 in your browser.
158158

159159
## Add Logout to Your Application
160160

161-
Now that you can log in to your Next.js application, you need <a href="https://auth0.com/docs/logout/log-users-out-of-auth0" target="_blank" rel="noreferrer">a way to log out</a>. Add a link that points to the `/auth/logout` API route. To learn more, read <a href="https://auth0.com/docs/authenticate/login/logout/log-users-out-of-auth0" target="_blank" rel="noreferrer">Log Users out of Auth0 with OIDC Endpoint</a>.
161+
Now that you can log in to your Next.js application, you need <a href="https://auth0.com/docs/logout/log-users-out-of-auth0" target="_blank" rel="noreferrer">a way to log out</a>. Add a link that points to the `/auth/logout` API route and make sure to add your full baseURL (`http://localhost:3000`) to the "Allowed Logout URLs" in your Auth0 Application Settings. To learn more, read <a href="https://auth0.com/docs/authenticate/login/logout/log-users-out-of-auth0" target="_blank" rel="noreferrer">Log Users out of Auth0 with OIDC Endpoint</a>.
162162

163163
```html
164164
<a href="/auth/logout">Logout</a>

0 commit comments

Comments
 (0)