How to add new pages without rebuilding an app with +150k static pages?

That can be achieved with getStaticProps/getStaticPaths. You’ll have to use fallback: true or fallback: ‘blocking’ in getStaticPaths. With fallback: true the paths not generated at build time will serve a fallback page on the first request while Next.js statically generates the page. When this is done the page will be swapped from the fallback page … Read more