We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73cdaf6 commit 9e36604Copy full SHA for 9e36604
_api/modules/guides/repository.ts
@@ -34,7 +34,7 @@ export function guidesRepository() {
34
guideFileNames.map(async (fileName) => {
35
const slug = slugify(fileName.replace(".yaml", ""));
36
// eslint-disable-next-line no-console
37
- console.log("[guide]", fileName);
+ console.log("[guide]", locale, fileName);
38
39
const guideCache = await storage.get(`guide-${locale}-${slug}`);
40
if (guideCache) return guideCache;
next.config.js
@@ -7,6 +7,9 @@ const nextConfig = {
7
compiler: {
8
styledComponents: true,
9
},
10
+ experimental: {
11
+ largePageDataBytes: 400 * 1000,
12
+ },
13
staticPageGenerationTimeout: 60 * 10,
14
async redirects() {
15
return redirects;
0 commit comments