mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
43 lines
1.3 KiB
Markdown
43 lines
1.3 KiB
Markdown
---
|
|
title: "nuxt.config.ts"
|
|
description: "Nuxt can be easily configured with a single nuxt.config file."
|
|
head.title: "nuxt.config.ts"
|
|
navigation.icon: i-ph-file-duotone
|
|
---
|
|
|
|
The `nuxt.config` file extension can either be `.js`, `.ts` or `.mjs`.
|
|
|
|
```ts [nuxt.config.ts]
|
|
export default defineNuxtConfig({
|
|
// My Nuxt config
|
|
})
|
|
```
|
|
|
|
::callout
|
|
`defineNuxtConfig` helper is globally available without import.
|
|
::
|
|
|
|
You can explicitly import `defineNuxtConfig` from `nuxt/config` if you prefer:
|
|
|
|
```ts [nuxt.config.ts]
|
|
import { defineNuxtConfig } from 'nuxt/config'
|
|
|
|
export default defineNuxtConfig({
|
|
// My Nuxt config
|
|
})
|
|
```
|
|
|
|
::read-more{to="/docs/api/configuration/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`](/docs/guide/directory-structure/env), [`.nuxtignore`](/docs/guide/directory-structure/nuxtignore) and `.nuxtrc` dotfiles.
|
|
|
|
The `.nuxtrc` file is a file that can be used to configure Nuxt with a fla syntax, it is based on [`unjs/rc9`](https://github.com/unjs/rc9).
|
|
|
|
``` [.nuxtrc]
|
|
ssr=false
|
|
```
|
|
|
|
If present the properties in `.nuxtrc` file will overwrite the properties in the `nuxt.config` file.
|