diff --git a/articles/quickstart/webapp/nextjs/interactive.md b/articles/quickstart/webapp/nextjs/interactive.md index 12be362c62..4022acd00e 100644 --- a/articles/quickstart/webapp/nextjs/interactive.md +++ b/articles/quickstart/webapp/nextjs/interactive.md @@ -30,7 +30,7 @@ locale: en-US ## Configure the SDK {{{ data-action="code" data-code=".env.local" }}} -
In the root directory of your project, add the file .env.local with the following environment variables:
AUTH0_SECRET: A long secret value used to encrypt the session cookie. You can generate a suitable string using openssl rand -hex 32 on the command line.
APP_BASE_URL: The base URL of your application.
AUTH0_DOMAIN: The URL of your Auth0 tenant domain. If you are using a Custom Domain with Auth0, set this to the value of your Custom Domain instead of the value reflected in the "Settings" tab.
AUTH0_CLIENT_ID: Your Auth0 application's Client ID.
AUTH0_CLIENT_SECRET: Your Auth0 application's Client Secret.
The SDK will read these values from the Node.js process environment and automatically configure itself.
+In the root directory of your project, add the file .env.local with the following environment variables:
AUTH0_SECRET: A long secret value used to encrypt the session cookie. You can generate a suitable string using openssl rand -hex 32 on the command line.
APP_BASE_URL: The base URL of your application.
AUTH0_DOMAIN: The URL of your Auth0 tenant domain. If you are using a Custom Domain with Auth0, set this to the value of your Custom Domain instead of the value reflected in the "Settings" tab.
AUTH0_CLIENT_ID: Your Auth0 application's Client ID.
AUTH0_CLIENT_SECRET: Your Auth0 application's Client Secret.
The SDK will read these values from the Node.js process environment and automatically configure itself.
## Create the Auth0 SDK Client {{{ data-action="code" data-code="src/lib/auth0.ts" }}}