From ee0f30ae690e2b940ffd4e92f223a5a5654ea710 Mon Sep 17 00:00:00 2001 From: Daniel LaForce Date: Mon, 28 Apr 2025 02:13:53 -0600 Subject: [PATCH] chore: Add minimal layout and test page for build diagnostics --- src/components/Terminal.astro | 2 +- src/layouts/MinimalLayout.astro | 15 +++++++++++++++ src/pages/test.astro | 9 +++++++++ 3 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 src/layouts/MinimalLayout.astro create mode 100644 src/pages/test.astro diff --git a/src/components/Terminal.astro b/src/components/Terminal.astro index 68e22bc..5980720 100644 --- a/src/components/Terminal.astro +++ b/src/components/Terminal.astro @@ -66,7 +66,7 @@ const lastIndex = commands.length - 1; {cmd.output && cmd.output.length > 0 && (
{cmd.output.map((line) => ( -
{/* set:html={line} */} {line}
{/* Temporarily render raw line */} +
))}
)} diff --git a/src/layouts/MinimalLayout.astro b/src/layouts/MinimalLayout.astro new file mode 100644 index 0000000..6b20a1f --- /dev/null +++ b/src/layouts/MinimalLayout.astro @@ -0,0 +1,15 @@ +--- +// src/layouts/MinimalLayout.astro +--- + + + + + Minimal Test + + +
+ +
+ + \ No newline at end of file diff --git a/src/pages/test.astro b/src/pages/test.astro new file mode 100644 index 0000000..c203686 --- /dev/null +++ b/src/pages/test.astro @@ -0,0 +1,9 @@ +--- +// src/pages/test.astro +import MinimalLayout from '../layouts/MinimalLayout.astro'; +--- + + +

Test Page

+

This is a minimal test page to isolate the build issue.

+
\ No newline at end of file