When building a project with the static site generator, I understand that the document created in advance is provided to the user.
If there is a logic that fetches data using axios, etc. and displays it on the screen when entering the page, does the corresponding API get cached or not called?
You have 2 lifecycle hooks that you can use to fetch data:
fetchandasyncDataas shown here: https://nuxtjs.org/docs/features/data-fetchingDepending on how you organize your project and what you need, there will be content generated in advanced thanks to SSG and some of it can also be run on the client, like if you need some auth'ed content.