From 39d856f368d9c3b388772d81dd2ed35a3f754f25 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Thu, 15 Jan 2026 22:18:16 +0100 Subject: [PATCH] Speed ISR for not found --- web/pages/[username]/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/pages/[username]/index.tsx b/web/pages/[username]/index.tsx index e403338..519ea18 100644 --- a/web/pages/[username]/index.tsx +++ b/web/pages/[username]/index.tsx @@ -85,7 +85,7 @@ export const getStaticProps = async (props: GetStaticPropsContext<{ notFoundCustomText: 'The profile you are looking for is not on this site... or perhaps you just mistyped?', }, - revalidate: 15, + revalidate: 1, } } @@ -118,7 +118,7 @@ export const getStaticProps = async (props: GetStaticPropsContext<{ props: { notFoundCustomText: `${user.username} hasn't created a profile yet.`, }, - revalidate: 15, + revalidate: 1, } } // console.debug('profile', profile)