8 lines
223 B
TypeScript
8 lines
223 B
TypeScript
import { Auth0Client } from "@auth0/nextjs-auth0/server";
|
|
|
|
export const auth0 = new Auth0Client({
|
|
authorizationParameters: {
|
|
scope: process.env.AUTH0_SCOPE,
|
|
audience: process.env.AUTH0_AUDIENCE
|
|
}
|
|
}); |