标签: build next.js config server-side-rendering
查看 the docs 似乎您可以在构建时使用 getStaticProps 和 getStaticPaths 作为优化(对于静态 Next.js 站点或 SSR Next.js 站点),并且您必须使用 getServerSideProps 进行 SSR。
getStaticProps
getStaticPaths
getServerSideProps
我希望同时支持完全静态的站点(即不需要 SSG/数据@从 nginx 或 S3 构建时间/服务)和 SSR。
有没有办法完全禁用静态构建的 SSR(即构建标志)?或者我需要在构建时省略或删除这些函数吗?