From 0ceab5b6268a679e45ad32e8aa3616ba284df51c Mon Sep 17 00:00:00 2001 From: Cosmin Popovici Date: Sat, 1 Aug 2026 14:53:36 +0300 Subject: [PATCH] fix(make:layout): use resolvable imports in Layout stub The scaffolded Layout stub imported outlookFallbackProp and useOutlookFallback via relative paths that only resolve inside the framework's dist/components dir, so a fresh build of a scaffolded layout crashed. Import useOutlookFallback from the public @maizzle/framework entrypoint and inline the outlookFallback prop definition. Closes #331 --- src/commands/make/stubs/Layout.vue | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/commands/make/stubs/Layout.vue b/src/commands/make/stubs/Layout.vue index 448728e..b3ef558 100644 --- a/src/commands/make/stubs/Layout.vue +++ b/src/commands/make/stubs/Layout.vue @@ -1,8 +1,7 @@