From 5485065b369b7af1aa80f1dca64d69dc5293b8d3 Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Mon, 10 Feb 2025 06:23:38 +0500 Subject: [PATCH] . --- next.config.js | 62 ++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 58 insertions(+), 4 deletions(-) diff --git a/next.config.js b/next.config.js index f483edd..3b63807 100644 --- a/next.config.js +++ b/next.config.js @@ -10,7 +10,7 @@ module.exports = withPlausibleProxy({ async headers() { return [ { - source: '/bookmarks/(.+)', + source: '/bookmarks/[slug]', headers: [ { key: 'Cache-Control', @@ -19,7 +19,7 @@ module.exports = withPlausibleProxy({ ], }, { - source: '/collection/(.+)', + source: '/collection/[id]', headers: [ { key: 'Cache-Control', @@ -28,7 +28,7 @@ module.exports = withPlausibleProxy({ ], }, { - source: '/home/(.+)', + source: '/home/[slug]', headers: [ { key: 'Cache-Control', @@ -37,7 +37,61 @@ module.exports = withPlausibleProxy({ ], }, { - source: '/profile/(.+)', + source: '/profile/[id]', + headers: [ + { + key: 'Cache-Control', + value: 's-maxage=2592000, stale-while-revalidate=86400', + }, + ], + }, + { + source: '/profile/[id]/bookmarks/[slug]', + headers: [ + { + key: 'Cache-Control', + value: 's-maxage=2592000, stale-while-revalidate=86400', + }, + ], + }, + { + source: '/profile/[id]/:path', + headers: [ + { + key: 'Cache-Control', + value: 's-maxage=2592000, stale-while-revalidate=86400', + }, + ], + }, + { + source: '/release/[id]', + headers: [ + { + key: 'Cache-Control', + value: 's-maxage=2592000, stale-while-revalidate=86400', + }, + ], + }, + { + source: '/release/[id]/collections', + headers: [ + { + key: 'Cache-Control', + value: 's-maxage=2592000, stale-while-revalidate=86400', + }, + ], + }, + { + source: '/related/[id]', + headers: [ + { + key: 'Cache-Control', + value: 's-maxage=2592000, stale-while-revalidate=86400', + }, + ], + }, + { + source: '/search', headers: [ { key: 'Cache-Control',