Static hosting is a type of hosting where your website is built and served as static files (HTML, CSS, JS) that can be served by any static file server.
Nuxt Content can be deployed to static hosting using Nuxt prerendering.
To build your app with static site generation, run the following command:
npx nuxi generate
dist/ directory with your static site. You can upload it to any static hosting service.Nuxt will automatically pre-render all pages using an internal crawler, you can customize it's behavior with the nitro.prerender options.
Nuxt Content will load the database in the browser using WASM SQLite, this way, the content queries happening on client-side navigation or actions will run in the browser.