What would cause a static HTML to be created for a non-static page using Next.js? I'm unsure if it's causing any issues, but I noticed this was happening while troubleshooting an issue with this specific page. Is this expected?
What I mean is that we have one page, let's call it "page1", that does not have the getStaticPaths() or getStaticProps() functions.
This page does rely on server-side data, but does not make use of getInitialProps() or getServerSideProps() as they are deprecated.
When I cd into the build directory I can see the .next/server/pages/page1.html - is this expected? There is no page1.json file. If not, what would cause this HTML file to be created?