Why do my Function requests increase from viewing static pages with no dynamic elements?

easyaii2.netlify.app

I’m building a simple website, nobody other than myself is currently accessing it. One thing I’ve noticed is my allowance of monthly function requests increases even when viewing pages with zero server based dynamic content in nextjs. There are no calls to getserversideprops or even getstaticprops. Is this normal behaviour? I’m trying to understand what’s causing this.

I’m thinking it’s either one of the following but they’re just guesses.

  • Every view is counted as a function request?
  • Every first page view after deployment is a function request as it’s cached in some form?

In the example image I’ve only viewed the website less than 10 times and deployed it once via the CLI’s ‘netlify deploy --build --prod’ command (All offline, no netlify CI or github connection) and yet I’m at 123 calls. The ‘Innvocations’ section in the function metrics page also says 0

Duplicate of: Reddit - Dive into anything

So is the only option to revert back to an older version of nextjs? Removing static pages seems to remove the entire purpose of using nextjs

This is something done by Next.js not Netlify.