From 28f9e3d4ab2206232d4d5ce034877b6fc8214719 Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Mon, 10 Feb 2025 04:46:38 +0500 Subject: [PATCH] add cache-control headers to reduce function invocations --- next.config.js | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/next.config.js b/next.config.js index f40087c..f483edd 100644 --- a/next.config.js +++ b/next.config.js @@ -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', + }, + ], + }, + ]; + }, });