DEV Community

Discussion on: Why our websites are slow — Importance of bundle size

Collapse
 
shreyvijayvargiya profile image
shrey vijayvargiya

Yes, nextjs does prefetching but bundling is taken care by webpack out of the box. Sorry but nextjs is SPA and Astro is MPA the main difference is multiple entry points in MPA then in SPA.
As I have mentioned, MPA has benefits but we still can't develop high end products and state management projects like Figma using MPA or Astro. Javascript helps us to write complex applications easily.

Collapse
 
jackmcbride98 profile image
Jack McBride

nextjs.org/learn/foundations/how-n...

Eech page has its own bundle. I see what you mean about not being able to make high end state management projects with MPA or Astro.

Next is the best of both worlds. You can build a SPA which appears to the user to be MPA or you can build an MPA. Whatever the project you are building requires. One of the reasons I'm big on Next :)