N
Nuxtβ€’2y ago
erztemplerobba

Nuxt3 feasible with large amount of pages?

I want to build a bigger application with more than 500 pages/articles. Many pages have lots of markup (bold, underlined, ...) as well as relatively complex tables with colored table cells which I want to style with vuetify components + custom css. So far I've only built smaller apps with up to 20-30 pages and fed content via an external API. My question is if a relatively large amount of pages will be make the whole application very slow.
2 Replies
kissu
kissuβ€’2y ago
Your pages and their routes will be code-splitted. https://nuxt.com/docs/getting-started/routing#routing So, if you have 2 or 4.000.000.000 pages, the speed will be the same. Bundling may be slower if you want them all static, but the runtime experience will stay the same (fast). πŸ‘πŸ» Assuming you're doing this properly and not getting memory leaks from page to page, by using querySelector or events listeners for example.
erztemplerobba
erztemplerobbaβ€’2y ago
exactly what i wanted to hear πŸ˜„ thank you very much kissu!