The Nuxt Certification Program by VueSchool is out!

nuxt.config.ts

Nuxt can be easily configured with a single nuxt.config file.

The nuxt.config file extension can either be .js, .ts or .mjs.

nuxt.config.ts
export default 
defineNuxtConfig
({
// My Nuxt config })
defineNuxtConfig helper is globally available without import.

You can explicitly import defineNuxtConfig from nuxt/config if you prefer:

nuxt.config.ts
import { 
defineNuxtConfig
} from 'nuxt/config'
export default
defineNuxtConfig
({
// My Nuxt config })
Discover all the available options in the Nuxt configuration documentation.

To ensure your configuration is up to date, Nuxt will make a full restart when detecting changes in the main configuration file, the .env, .nuxtignore and .nuxtrc dotfiles.

The .nuxtrc file can be used to configure Nuxt with a flat syntax. It is based on unjs/rc9.

.nuxtrc
ssr=false

If present the properties in .nuxtrc file will overwrite the properties in the nuxt.config file.