From a88288e542f1309ffb3392c0282f2310e071fc0c Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Wed, 20 May 2026 12:31:32 +0200 Subject: [PATCH 1/2] fix(chat): inline ChatPrompt props instead of extending external type Extending ChatPromptProps from @nuxt/ui via `defineProps()` trips @vue/compiler-sfc's "resolve extends base type" pass under nuxt 4.4.6, breaking the Vercel build. Replace with explicit local props (only the ones we actually forward to UChatPrompt) so the SFC compiler doesn't need to chase the type chain into node_modules. Co-Authored-By: Claude Opus 4.7 (1M context) --- app/components/chat/ChatPrompt.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/components/chat/ChatPrompt.vue b/app/components/chat/ChatPrompt.vue index 57f7e2e..00a4ef8 100644 --- a/app/components/chat/ChatPrompt.vue +++ b/app/components/chat/ChatPrompt.vue @@ -1,11 +1,13 @@