Files
desa-darmasaba/next.config.ts
bipproduction 2115af8126 tambahannnya
2025-02-15 21:56:18 +08:00

21 lines
442 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
async headers() {
return [
{
source: '/assets/:path*', // Path ke folder gambar
headers: [
{
key: 'Cache-Control',
value: 'public, max-age=3600, stale-while-revalidate=600', // Cache selama 1 jam, validasi ulang setelah 10 menit
},
],
},
];
},
};
export default nextConfig;