Replies: 1 comment 2 replies
-
Hi, NextJS has an experimental feature called "Incremental Static Regeneration" which I think it's what you're looking for. It's documented here: You basically just need to add |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, In my homepage I use getStaticProps to show my products. But if I add more products, it will not show, so I use SWR to fetch new data, it's pretty fine.
Is there any way or trick to re-render homepage to add new data? I don't want fetch api because it look slow.
We can use web hook to rebuild app, but look like its not the best way for just small task.
I want something work like fallback in getStaticPaths
Beta Was this translation helpful? Give feedback.
All reactions