Blog

Interviews, resources, and articles from the Nuxt community

Nuxt 4 Performance Optimization: Complete Guide to Faster Apps in 2026
Resource

Nuxt 4 Performance Optimization: Complete Guide to Faster Apps in 2026

This guide covers the most impactful optimizations you can make to your Nuxt 4 application. You'll learn how to choose the right rendering strategy for each page and optimize your bundle size. You'll implement caching strategies and reduce hydration overhead. These aren't theoretical concepts. They're practical techniques you can apply today to make your app faster.

December 26, 2025
NuxtPerformance
Optimizing Nuxt Apps for Core Web Vitals
Resource

Optimizing Nuxt Apps for Core Web Vitals

This guide covers practical techniques for optimizing Nuxt apps specifically for Core Web Vitals.

December 26, 2025
Core Web VitalsNuxtPerformance
How To Optimize Performance In Nuxt Apps
Resource

How To Optimize Performance In Nuxt Apps

explore how Nuxt’s architecture, including server-side rendering (SSR), static site generation (SSG), and its modular ecosystem, can be leveraged to build lightning-fast web apps. Topics like code splitting, lazy loading, caching, and fine-tuning build configurations will be covered, offering both foundational and advanced techniques to boost your app's speed and responsiveness.

December 26, 2025
NuxtPerformanceoptimize
Integrating MongoDB in Nuxt 3
Resource

Integrating MongoDB in Nuxt 3

In this post is a step-by-step guide to integrate MongoDB into a Nuxt 3 app using the native MongoDB package with TypeScript to create a sturdy and scalable solution.

December 26, 2025
MongoDBNuxt
Server-Sent Events in Nuxt 3: A Beginner’s Guide to Real-Time Features
Resource

Server-Sent Events in Nuxt 3: A Beginner’s Guide to Real-Time Features

Real-time updates are becoming more important for current online applications, including live alerts and dynamic dashboards. This article will show you how to use Server-Sent Events (SSE) in a Nuxt 3 project to allow real-time capabilities. We’ll go over everything from setting up a small SSE API route to consuming updates in your Nuxt 3 components.

December 26, 2025
SSEServer Sent EventsNuxt