mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 17:43:59 +00:00
94f76ea930
Co-authored-by: Daniel Roe <daniel@roe.dev>
492 B
492 B
icon | title | head.title |
---|---|---|
IconFile | app.config.ts | Nuxt App Config |
Nuxt App Config
::StabilityEdge ::
You can easily provide runtime app configuration using app.config.ts
file. It can have either of .ts
, .js
, or .mjs
extensions.
export default defineAppConfig({
foo: 'bar'
})
::alert{type=warning}
Do not put any secret values inside app.config
file. It is exposed to the user client bundle.
::
::ReadMore{link="/guide/features/app-config"}