Files
next-dj/proxy.ts
Beyhan Oğur e881f38e4e first commit
2026-04-26 22:12:36 +03:00

14 lines
239 B
TypeScript

import { withAuth } from "next-auth/middleware";
export default function proxy(request: any) {
return withAuth(request, {
pages: {
signIn: "/login",
},
});
}
export const config = {
matcher: ["/dashboard/:path*"],
};