We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 612285f commit 9a0439cCopy full SHA for 9a0439c
app/[lang]/layout.tsx
@@ -1,3 +1,5 @@
1
+export const revalidate = 3600
2
+
3
import 'server-only';
4
import '../../styles/output.css';
5
src/fetches/github.ts
@@ -7,6 +7,7 @@ export const fetchGithubStats = async (login: string): Promise<string> => {
7
Accept: 'application/json',
8
'Content-Type': 'image/svg+xml',
9
},
10
+ next: {revalidate: 3600},
11
};
12
13
try {
0 commit comments