DEV Community

Discussion on: Can NuxtJS handle a site with 150K pages?

Collapse
 
kp profile image
KP

I'm on Nuxt and Laravel myself. I don't see the problem doing what you're trying to do.
If by prerendering you mean SSR, then yes, Nuxt supports that in universal mode out of the box.

Collapse
 
ckissi profile image
Csaba Kissi

Thanks yeah, I mean SSR. In one video tutorial, it was mentioned that during the final build the number of pages needs to be considered as it has something to do with the final build time. It is like creating some prerendered code.

Collapse
 
kp profile image
KP

If you are making the pages dynamic via an API, that will greatly reduce the number of "pages", so it should not matter. Good luck!

Thread Thread
 
ckissi profile image
Csaba Kissi

Thank you!