> ## Documentation Index
> Fetch the complete documentation index at: https://mintlify.com/nuxt/nuxt/llms.txt
> Use this file to discover all available pages before exploring further.

# useAppConfig

> Access the reactive app config defined in the project.

## Usage

```ts theme={null}
const appConfig = useAppConfig()

console.log(appConfig)
```

## Parameters

This composable does not take any parameters.

## Return Values

<ResponseField name="appConfig" type="AppConfig">
  A reactive object containing the app configuration defined in `app.config.ts`. The config is reactive and will update automatically when changed.
</ResponseField>

## Type

```ts theme={null}
export function useAppConfig(): AppConfig
```
