mirror of
https://github.com/netbirdio/docs.git
synced 2026-05-03 07:46:35 +00:00
10 lines
271 B
JavaScript
10 lines
271 B
JavaScript
import { NextResponse } from 'next/server';
|
|
|
|
export function proxy(req) {
|
|
if (req.nextUrl.href.includes('/docs-static/_next/'))
|
|
return NextResponse.rewrite(
|
|
req.nextUrl.href.replace('/docs-static/_next/', '/_next/'),
|
|
);
|
|
|
|
return null;
|
|
} |