I’m using a headless CMS with around 200k posts.
Can hugo be used purely as a frontend, where it fetches data from my backend API and renders it dynamically?
For example: if someone visits /post/{slug}, it would call the backend API, get the post data, and then render the UI.
From what I understand, hugo mainly generates static sites. But with 200k posts, that would mean pre-rendering everything, and rebuilding the whole site every time there’s new content — which feels so 1994’s way of deploying a website.
How to achieve my use case so I can host it on static only hosting like netlify?