Next.js Discord

Discord Forum

Next Auth Middleware Id route

Answered
lasse posted this in #help-forum
Open in Discord
Avatar
lasseOP
How do i make the /[id] work?

export { default } from "next-auth/middleware";

export const config = {
  matcher: [
    "/dashboard",
    "/dashboard/developers",
    "/dashboard/developers/[id]",
  ],
};

6 Replies

Avatar
European sprat
regex
Avatar
lasseOP
can you give me an example
Answer
Avatar
European sprat
actually, you don't even need regex based on what you want to do there
see the linked docs
Avatar
lasseOP
thank you!