From 7f5be7315e125ea4179ac7e5f238246f9b1b62f0 Mon Sep 17 00:00:00 2001 From: Kevin De Porre Date: Wed, 11 Dec 2024 13:49:53 +0100 Subject: [PATCH] Fix searchParams issue with suspense missing --- examples/proxy-auth/next.config.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 examples/proxy-auth/next.config.js diff --git a/examples/proxy-auth/next.config.js b/examples/proxy-auth/next.config.js new file mode 100644 index 0000000000..8f3f94042e --- /dev/null +++ b/examples/proxy-auth/next.config.js @@ -0,0 +1,7 @@ +const config = { + experimental: { + missingSuspenseWithCSRBailout: false, + }, +} + +export default config \ No newline at end of file