Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

Latest commit

 

History

History
36 lines (26 loc) · 892 Bytes

3.nuxt.config.md

File metadata and controls

36 lines (26 loc) · 892 Bytes
navigation.icon title description head.title
IconFile
nuxt.config.ts
Nuxt can be easily configured with a single nuxt.config file.
Nuxt Configuration File

Nuxt Config File

Nuxt can be easily configured with a single nuxt.config file, which can have either a .js, .ts or .mjs extension.

export default defineNuxtConfig({
  // My Nuxt config
})

::alert defineNuxtConfig helper is globally available without import. ::

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

import { defineNuxtConfig } from 'nuxt/config'

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 main configuration file, the .env, .nuxtignore and .nuxtrc dotfiles.

::ReadMore{link="/api/configuration/nuxt-config"} ::