umami/src/middleware.ts

9 lines
198 B
TypeScript

import { NextResponse } from 'next/server';
export function middleware() {
return NextResponse.next();
}
export const config = {
matcher: ['/((?!_next/static|_next/image|favicon.ico).*)'],
};