Is exporting next js app to static html is cheaper than `next start` option using NodeJS

I’m about to move my Next.js app to production and there are two option for production, with different limitations.

  • next start deploying it on a Node.js server
  • next export hosting static HTML.

Now obviously hosting the static generated HTML is cheaper than deploying it on a Node.js server. But i want to know how much it’s cheaper.

Also, what is the recommended server for deploying a Next.js app using node.js With 1000 users? (how much RAM and CPU)