From 5eaa89851acbf2e0a43741e417b8ca7da4e4a0e7 Mon Sep 17 00:00:00 2001 From: Theodor Risager Date: Wed, 11 Jun 2025 10:35:36 +0200 Subject: [PATCH] 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. --- articles/quickstart/webapp/nextjs/01-login.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/articles/quickstart/webapp/nextjs/01-login.md b/articles/quickstart/webapp/nextjs/01-login.md index 74d19680bc..d2eed3c32e 100644 --- a/articles/quickstart/webapp/nextjs/01-login.md +++ b/articles/quickstart/webapp/nextjs/01-login.md @@ -158,7 +158,7 @@ and visit http://localhost:3000 in your browser. ## Add Logout to Your Application -Now that you can log in to your Next.js application, you need a way to log out. Add a link that points to the `/auth/logout` API route. To learn more, read Log Users out of Auth0 with OIDC Endpoint. +Now that you can log in to your Next.js application, you need a way to log out. 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 Log Users out of Auth0 with OIDC Endpoint. ```html Logout