Merge pull request #319 from documenso/chore/reduce-refetch-time

chore: reduce open page caching time to 1 hour
This commit is contained in:
Lucas Smith
2023-08-28 22:58:05 +10:00
committed by GitHub

View File

@ -8,7 +8,7 @@ import { FundingRaised } from './funding-raised';
import { GithubMetric } from './gh-metrics';
import { TeamMembers } from './team-members';
export const revalidate = 86400;
export const revalidate = 3600;
const ZGithubStatsResponse = z.object({
stargazers_count: z.number(),