diff --git a/frontend/next.config.ts b/frontend/next.config.ts index f649806..fe38822 100644 --- a/frontend/next.config.ts +++ b/frontend/next.config.ts @@ -9,6 +9,16 @@ const nextConfig: NextConfig = { }, ]; }, + async headers() { + return [ + { + source: "/api/:path*", + headers: [ + { key: "Cache-Control", value: "no-store, max-age=0" }, + ], + }, + ]; + }, }; export default nextConfig;