nuxt.config.ts

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


The file can have either a .js, .ts or .mjs extension.

import { defineNuxtConfig } from 'nuxt'export default defineNuxtConfig({  // My Nuxt config})

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