Next.js Discord

Discord Forum

Next Auth Middleware Id route

Answered
Mallow bee posted this in #help-forum
Open in Discord
Avatar
Mallow beeOP
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
Mallow beeOP
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
Mallow beeOP
thank you!