Updated site

This commit is contained in:
2025-10-30 00:39:26 +01:00
parent 3cd38b7628
commit 790109df16
7 changed files with 39 additions and 27 deletions

View File

@@ -10,6 +10,23 @@ const nextConfig: NextConfig = {
experimental: {
browserDebugInfoInTerminal: true,
turbopackFileSystemCacheForDev: true
},
cacheLife: {
hypixelApi: {
stale: 1000 * 60,
revalidate: 1000 * 30,
expire: 1000 * 60 * 5
},
mojangApi: {
stale: 1000 * 60,
revalidate: 1000 * 30,
expire: 1000 * 60 * 5
},
playerWithGuild: {
stale: 1000 * 60 * 60 * 24,
revalidate: 1000 * 60 * 60 * 24,
expire: 1000 * 60 * 60 * 24 * 7
}
}
}