1
0
mirror of https://github.com/nuxt/nuxt.git synced 2025-03-04 12:25:02 +00:00
Nuxt/docs/content/1.docs/3.api/1.composables/use-app-config.md

14 lines
257 B
Markdown
Raw Normal View History

# `useAppConfig`
Access the reactive [app config](/docs/guide/directory-structure/app.config) defined in the project.
**Usage:**
```js
const appConfig = useAppConfig()
console.log(appConfig)
```
::ReadMore{link="/guide/directory-structure/app.config"}