Files
vercel_dashboard_example/proxy.ts
T
2026-05-11 18:28:23 +03:00

9 lines
292 B
TypeScript

import NextAuth from 'next-auth';
import { authConfig } from './auth.config';
export default NextAuth(authConfig).auth;
export const config = {
// https://nextjs.org/docs/app/api-reference/file-conventions/proxy#matcher
matcher: ['/((?!api|_next/static|_next/image|.*\\.png$).*)'],
};