Nuxt என்பது Vue க்கான meta-framework (React க்கான Next.js சమம்). இது server-side rendering (SSR), file-based routing மற்றும் full-stack திறன்களை Vue க்குச் சேர்க்கிறது — Vue ஐ client-side library இலிருந்து முழுமையான பயன்பாட்டு framework ஆக மாற்றுகிறது.
SSR தீர்க்கும் முக்கிய சிக்கல்
Plain Vue SPA: server sends an empty <div id="app"></div> + JS bundle
→ browser downloads JS, runs Vue, THEN renders content
→ slow first paint, and crawlers may see a blank page (bad SEO)
Nuxt SSR: server renders the full HTML and sends it ready-to-view
→ fast first paint, content visible immediately, great SEO
→ Vue then "hydrates" it to make it interactive
