1
0
Fork 0

chore: wildcard match paths

fix-1
Paul Makles 2023-07-30 12:06:30 +01:00
parent 43eb7691d5
commit 41c3d1ea1d
No known key found for this signature in database
GPG Key ID: 5059F398521BB0F6
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
export { default } from "next-auth/middleware"; export { default } from "next-auth/middleware";
export const config = { export const config = {
matcher: ["/panel*"], matcher: ["/panel", "/panel/:path*"],
pages: { pages: {
signIn: "/", signIn: "/",
}, },