Documentación offline Nuxt main

NUXTB5001

main Documentación oficial Licencia MITDescargado el 2026-08-02

En esta página

B5001#

No compatibilityDate is set in your Nuxt configuration. Nuxt uses this date to decide which behaviour defaults to apply, so your project stays stable across Nuxt and Nitro updates instead of silently picking up new defaults.

Resolution#

Add compatibilityDate to your nuxt.config, using today's date so you opt in to the current defaults:

export default defineNuxtConfig({
  // use the current date, e.g. the day you add this line
  compatibilityDate: 'YYYY-MM-DD',
})

::read-more{to="/docs/getting-started/upgrade"} ::