From 2ba1faacd856ebd611010afb4a7ebea1ca969b48 Mon Sep 17 00:00:00 2001 From: jmzwar Date: Thu, 1 Feb 2024 12:33:04 +1100 Subject: [PATCH] increase timeout --- pages/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/index.tsx b/pages/index.tsx index 60044250..b2f87d88 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -243,7 +243,7 @@ export const getStaticProps: GetStaticProps = async () => { markets, uniqueTradingAccounts, }, - revalidate: 60 * 60, + revalidate: 10800, }; } catch (e) { console.log(e); @@ -259,7 +259,7 @@ export const getStaticProps: GetStaticProps = async () => { markets: null, uniqueTradingAccounts: null, }, - revalidate: 60 * 5, + revalidate: 10800, }; } };