File size: 159 Bytes
1e92f2d |
1 2 3 4 5 6 7 |
import { NextResponse } from 'next/server'
export const config = { matcher: ['/foo'] }
export async function middleware(req) {
return NextResponse.next()
}
|
1e92f2d |
1 2 3 4 5 6 7 |
import { NextResponse } from 'next/server'
export const config = { matcher: ['/foo'] }
export async function middleware(req) {
return NextResponse.next()
}
|