3v324v23's picture
Add Bextts TTS integration
b3f024a
Raw
History Blame Contribute Delete
442 Bytes
import { NextResponse } from 'next/server'
import type { NextRequest } from 'next/server'
export function proxy(request: NextRequest) {
const { pathname } = request.nextUrl
// Redirect root to notebooks
if (pathname === '/') {
return NextResponse.redirect(new URL('/notebooks', request.url))
}
return NextResponse.next()
}
export const config = {
matcher: [
'/((?!api|_next/static|_next/image|favicon.ico).*)',
],
}