'How to change true to false __N_SSG in nextjs?
How to change pageProps inside of __N_SSG parameter true to false or remove pageProps. Because I generated build time multiple pages. I manual changed true to false, But If I take another build again want to change manually true to false, can you change runtime. could you please solve this issues. see below image.

Solution 1:[1]
According to Nextjs support, one should not rely on this API nor try to modify it directly.
This is a private field (mind the double underscore) used by Next.js to know the page needs its static data fetched on client-side transition.
You cannot rely on it, as we've already renamed it a few times and do not plan on making it a public API. We may even remove it in the future.
So... refrain from doing anything at that level, and rather solve the issue at the "page" level, by choosing static page generation, server-side page generation or any other option offered by Nextjs at the time you're reading this.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Wallace Sidhrée |
