This page is statically generated but also revalidates (regenerates) if a user lands on this page 10s after the last regeneration has occurred.
Some of the effects of ISR:
With `fallback: true`:
Slugs not explicitly handled by `getStaticPaths` for static generation can be statically generated upon first visit. Try it out by visiting some non-sense url like:
nonsensical SSRG URLSubsequent visits to this weird URL will then serve up the statically generated version.
P.s. because I use `next/link` component here automatic prefetching is enabled and it will trigger the initial static generation automagically.This implementation uses getStaticProps with revalidate=10 and getStaticPaths.