mirror of
https://github.com/umami-software/umami.git
synced 2026-02-18 03:25:40 +01:00
9 lines
198 B
TypeScript
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).*)'],
|
|
};
|