Currently, I have a Next.js site that utilizes getServerSideProps for data fetching. However, I am interested in switching to getStaticProps and implementing incremental static regeneration (ISR) for improved performance. Currently, my memory usage is approximately 125MB. When crawling all pages with getStaticProps, the memory usage spikes to around 2GB. My goal is to keep the memory footprint under 500MB, but I haven't found a way to set a maximum cache limit for getStaticProps.