How to ensure dynamic pages are rendered statically?

Hello everyone! I’m creating a blog using Plasmic and I have a /blog page that uses getStaticProps to fetch the data from my CMS, and then I’m sending that data using the Next.js loader to a PlasmicComponent that was designed on the studio, but it seems that <PlasmicComponent> is being rendered in the client, is there something that I need to do to render it using SSG?

Hi @large_viper, if you want it to be fully static then you’ll need to also specify getstaticpaths

The default next js quick start assumes you are using a host that supports incremental static generation, which is why the fallback is set to blocking

Thanks, Yang! I’ll give it a try!