
Extra Nuxt config options that go further and could help unlock new possibilities.
Reza Baar
November 24, 2025
Nuxt is configured with sensible but extendable defaults. The nuxt.config.ts file supports an opt-in features namespace to enable or disable specific runtime behaviors, alongside a future namespace to adopt upcoming framework defaults and experimental multi-app support. It is located at the root of a Nuxt project and can be used to add custom scripts, register modules or change rendering modes.
In this article, we’re going to check some “extra” options that go further and could help unlock new possibilities.
The features block controls optional runtime behaviors in your application:
export default defineNuxtConfig({
features: {
devLogs: true // | 'silent'
}
})
export default defineNuxtConfig({
features: {
inlineStyles: false // | (id) => boolean
}
})
export default defineNuxtConfig({
features: {
noScripts: true, // or 'production' | 'all' | false
},
})
Enable upcoming defaults and experimental core changes under future:
export default defineNuxtConfig({
future: {
compatibilityVersion: 5
}
})
export default defineNuxtConfig({
future: {
multiApp: true
}
})
export default defineNuxtConfig({
experimental: {
asyncContext: true,
},
})
export default defineNuxtConfig({
experimental: {
buildCache: true,
},
})
export default defineNuxtConfig({
experimental: {
cookieStore: true,
},
})
export default defineNuxtConfig({
experimental: {
purgeCachedData: false, // enabled by default
},
})
Get the latest news and updates on developer certifications. Content is updated regularly, so please make sure to bookmark this page or sign up to get the latest content directly in your inbox.

Vanilla JavaScript in 2026: Why You Still Can’t Ignore It
Vanilla JavaScript in 2026: Why You Still Can’t Ignore It
Martin Ferret
Feb 3, 2026

What's New in React 19.2
Learn what's new in React 19.2: Activity for state-preserving UI, useEffectEvent for cleaner effects, compiler-powered ESLint rules, and Performance Tracks in DevTools.
Aurora Scharff
Feb 2, 2026

What’s new in Angular 21.1?
Angular 21.1 is out, and while most of the new features are still experimental, the release gives us a solid preview of where Angular is heading. From Signal Forms API changes and long-awaited focus helpers, to more flexible control flow, template improvements, router updates, and MCP server enhancements, this version is packed with ideas worth exploring—just not shipping to production yet. Let’s take a quick look at what’s new and what’s promising.
Alain Chautard
Jan 23, 2026
We can help you recruit Certified Developers for your organization or project. The team has helped many customers employ suitable resources from a pool of 100s of qualified Developers.
Let us help you get the resources you need.
