From 4bc57dad882f7b31e84973e829ebcba54f936d5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Chopin?= Date: Tue, 6 Sep 2022 18:14:39 +0200 Subject: [PATCH] docs: rename AppConfig to AppConfigInput --- docs/content/2.guide/2.features/10.app-config.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/content/2.guide/2.features/10.app-config.md b/docs/content/2.guide/2.features/10.app-config.md index 5dcd0472808..f81e9335800 100644 --- a/docs/content/2.guide/2.features/10.app-config.md +++ b/docs/content/2.guide/2.features/10.app-config.md @@ -38,11 +38,11 @@ It is also possible to type app config manually: ```ts [index.d.ts] declare module '@nuxt/schema' { - interface AppConfig { + interface AppConfigInput { /** Theme configuration */ - theme: { + theme?: { /** Primary app color */ - primaryColor: string + primaryColor?: string } } }