/** @type {import('next').NextConfig} */ const nextConfig = { async headers() { return [ { source: "/overview-cards/v2/:path*", headers: [ { key: "Cache-Control", value: "public, max-age=31536000, immutable", }, ], }, ]; }, }; export default nextConfig;