| 123456789101112131415161718 |
- /** @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;
|