MeshiTrack/packages/web/src/proxy.ts

7 lines
235 B
TypeScript
Raw Normal View History

2026-03-27 14:50:34 +09:00
export { auth as proxy } from '@/lib/auth';
export const config = {
// Protect all routes except auth callbacks, the login page, and Next.js internals.
matcher: ['/((?!api/auth|login|_next/static|_next/image|favicon.ico).*)'],
};