Next.js simple SPA private app with all the code being cached and data fetched fresh client side
I want to build a basic private app behind Auth so it cannot use SSR as the data being used for page render is user-specific. With this, I am going to use “export”=”static” configuration of Next.js so the page is built during the build time, and no Node.js during runtime on the server, just static js files along with other assets.