Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
omariosouto committed Sep 20, 2024
1 parent 73cdaf6 commit 9e36604
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion _api/modules/guides/repository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export function guidesRepository() {
guideFileNames.map(async (fileName) => {
const slug = slugify(fileName.replace(".yaml", ""));
// eslint-disable-next-line no-console
console.log("[guide]", fileName);
console.log("[guide]", locale, fileName);

const guideCache = await storage.get(`guide-${locale}-${slug}`);
if (guideCache) return guideCache;
Expand Down
3 changes: 3 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ const nextConfig = {
compiler: {
styledComponents: true,
},
experimental: {
largePageDataBytes: 400 * 1000,
},
staticPageGenerationTimeout: 60 * 10,
async redirects() {
return redirects;
Expand Down

0 comments on commit 9e36604

Please sign in to comment.