mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
4055024e5f
Co-authored-by: Damian <48835293+DamianGlowala@users.noreply.github.com>
22 lines
427 B
Markdown
22 lines
427 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
|
|
})
|
|
```
|
|
|
|
Learn more about all the different config properties
|
|
|
|
<!-- GENERATED_CONFIG_DOCS -->
|