diff --git a/next.config.ts b/next.config.ts index da25007..32b8868 100644 --- a/next.config.ts +++ b/next.config.ts @@ -21,6 +21,19 @@ const nextConfig: NextConfig = { ], }, output: "standalone", + async headers() { + return [ + { + source: '/:path*{/}?', + headers: [ + { + key: 'X-Accel-Buffering', + value: 'no', + }, + ], + }, + ] + }, }; export default nextConfig;