mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 09:03:53 +00:00
21 lines
395 B
Markdown
21 lines
395 B
Markdown
|
---
|
||
|
icon: IconFile
|
||
|
title: nuxt.config.ts
|
||
|
head.title: Nuxt configuration file
|
||
|
---
|
||
|
|
||
|
# Nuxt configuration file
|
||
|
|
||
|
Nuxt can be easily configured with a single `nuxt.config` file, which can have either a `.js`, `.ts` or `.mjs` extension.
|
||
|
|
||
|
```ts
|
||
|
import { defineNuxtConfig } from 'nuxt3'
|
||
|
|
||
|
export default defineNuxtConfig({
|
||
|
// My Nuxt config
|
||
|
})
|
||
|
```
|
||
|
|
||
|
::ReadMore{link="/api/configuration/nuxt.config"}
|
||
|
::
|