try disable csp for test

This commit is contained in:
Stephen Zhou
2026-04-08 18:55:05 +08:00
parent b64e930771
commit 19ab594c72

View File

@ -24,7 +24,7 @@ export function proxy(request: NextRequest) {
},
})
const isWhiteListEnabled = !!env.NEXT_PUBLIC_CSP_WHITELIST && process.env.NODE_ENV === 'production'
const isWhiteListEnabled = !!env.NEXT_PUBLIC_CSP_WHITELIST
if (!isWhiteListEnabled)
return wrapResponseWithXFrameOptions(response, pathname)