Experimental Features

The Nuxt experimental features can be enabled in the Nuxt configuration file. Internally, Nuxt uses @nuxt/schema to define these experimental features. You can refer to the API documentation or the source code for more information.

💡

Note that these features are experimental and could be removed or modified in the future.

asyncEntry

Enables generation of an async entry point for the Vue bundle, aiding module federation support.

nuxt.config.ts
export defineNuxtConfig({ experimental: { asyncEntry: true } })

reactivityTransform

Enables Vue's reactivity transform. Note that this feature has been marked as deprecated in Vue 3.3 and is planned to be removed from core in Vue 3.4.

nuxt.config.ts
export defineNuxtConfig({ experimental: { reactivityTransform: true } })