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