Skip to content

Commit

Permalink
Revalidate off for the /docs
Browse files Browse the repository at this point in the history
  • Loading branch information
catalinred committed Jan 14, 2025
1 parent ebf2ad5 commit 3433fc4
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/pages/developers/cookbook/[[...slug]].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export async function getStaticProps({ params, locale }) {
source,
navData,
},
revalidate: 60,
// revalidate: 60,
};
}

Expand Down
2 changes: 1 addition & 1 deletion src/pages/developers/courses/[course]/[lesson]/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,6 @@ export async function getStaticProps({ params, locale }) {
record,
source,
},
revalidate: 60,
// revalidate: 60,
};
}
2 changes: 1 addition & 1 deletion src/pages/developers/courses/[course]/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export async function getStaticProps({
lessons,
// source,
},
revalidate: 60,
// revalidate: 60,
};
}

Expand Down
2 changes: 1 addition & 1 deletion src/pages/developers/courses/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export async function getStaticProps({ locale }) {
records,
featured,
},
revalidate: 60,
// revalidate: 60,
};
}

Expand Down
2 changes: 1 addition & 1 deletion src/pages/developers/guides/[...slug].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,6 @@ export async function getStaticProps({ params, locale }) {
record,
source,
},
revalidate: 60,
// revalidate: 60,
};
}
2 changes: 1 addition & 1 deletion src/pages/developers/guides/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export async function getStaticProps({ locale }) {
records,
featured,
},
revalidate: 60,
// revalidate: 60,
};
}

Expand Down
2 changes: 1 addition & 1 deletion src/pages/developers/resources/[...slug].jsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,6 @@ export async function getStaticProps({ params, locale }) {
record,
source,
},
revalidate: 60,
// revalidate: 60,
};
}
2 changes: 1 addition & 1 deletion src/pages/developers/resources/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export async function getStaticProps({ locale }) {
records,
featured,
},
revalidate: 60,
// revalidate: 60,
};
}

Expand Down
2 changes: 1 addition & 1 deletion src/pages/docs/rpc/[[...slug]].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,6 @@ export async function getStaticProps({ params, locale }) {
source,
navData,
},
revalidate: 60,
// revalidate: 60,
};
}

0 comments on commit 3433fc4

Please sign in to comment.