add cache-control headers to reduce function invocations

This commit is contained in:
Kentai Radiquum 2025-02-10 04:46:38 +05:00
parent 40e721bf30
commit 28f9e3d4ab
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -7,4 +7,44 @@ module.exports = withPlausibleProxy({
images: {
unoptimized: true,
},
async headers() {
return [
{
source: '/bookmarks/(.+)',
headers: [
{
key: 'Cache-Control',
value: 's-maxage=2592000, stale-while-revalidate=86400',
},
],
},
{
source: '/collection/(.+)',
headers: [
{
key: 'Cache-Control',
value: 's-maxage=2592000, stale-while-revalidate=86400',
},
],
},
{
source: '/home/(.+)',
headers: [
{
key: 'Cache-Control',
value: 's-maxage=2592000, stale-while-revalidate=86400',
},
],
},
{
source: '/profile/(.+)',
headers: [
{
key: 'Cache-Control',
value: 's-maxage=2592000, stale-while-revalidate=86400',
},
],
},
];
},
});