Skip to content

Commit

Permalink
Reintroduce revalidate gradually
Browse files Browse the repository at this point in the history
  • Loading branch information
catalinred committed Dec 19, 2024
1 parent 245e969 commit ee3041c
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 ee3041c

Please sign in to comment.