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