I’m new to Pages.
I have created empty NextJs SSR (Server-Side Rending) application and deployed it to Pages thru Github to try out this product.
I noticed that my functions & workers requests are increasing and i dont understand even why.
I dont have any workers, about Functions im not sure even what is it.
Will it increase each time someone visit my site which deployed to Pages? or each time i release a new version to Github and its being deploying to Pages automatically?
Functions are Workers but integrated with Pages - using server-side rendering means you are using Functions, as they are the ‘server’ in this scenario.
It’ll increase when you get a request to URL that runs a Function.