File size: 182 Bytes
1e92f2d |
1 2 3 4 5 6 7 |
import { NextResponse } from 'next/server'
import * as bind from 'function-bind'
console.log(bind)
export default async function middleware(request) {
return NextResponse.next()
}
|