From 40b3570343dc68684d3ecf03e1a439e815f57ba3 Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Tue, 10 Sep 2024 17:01:39 +0200 Subject: [PATCH] fix(templates): augment `@nuxt/schema` rather than `nuxt/schema` --- src/templates.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/templates.ts b/src/templates.ts index aedb157d..05584496 100644 --- a/src/templates.ts +++ b/src/templates.ts @@ -65,16 +65,12 @@ type AppConfigUI = { icons?: Partial } & DeepPartial -declare module 'nuxt/schema' { - interface AppConfigInput { - ui?: AppConfigUI - } -} declare module '@nuxt/schema' { interface AppConfigInput { ui?: AppConfigUI } } + export {} ` })