feat: remove 301 https to avoid cloudflare proxy issue

This commit is contained in:
DIYgod 2022-10-11 20:52:58 +01:00
parent 027d2ed220
commit c0b413a853
No known key found for this signature in database
GPG Key ID: D159328F47A80DCA
1 changed files with 0 additions and 9 deletions

View File

@ -15,15 +15,6 @@ const ALWAYS_REPLAY_ROUTES = [
export default async function middleware(req: NextRequest) {
const { pathname } = req.nextUrl
if (IS_PROD && req.headers.get("x-forwarded-proto") !== "https") {
return NextResponse.redirect(
`https://${req.headers.get("host")}${req.nextUrl.pathname}${
req.nextUrl.search
}`,
301,
)
}
console.log(`${req.method} ${req.nextUrl.pathname}${req.nextUrl.search}`)
if (