mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 17:13:56 +00:00
9a0fc57724
Co-authored-by: Sébastien Chopin <seb@nuxtjs.com> Co-authored-by: pooya parsa <pyapar@gmail.com>
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"}
|
|
::
|