chore: Add minimal layout and test page for build diagnostics

This commit is contained in:
Daniel LaForce 2025-04-28 02:13:53 -06:00
parent 0be626866d
commit ee0f30ae69
3 changed files with 25 additions and 1 deletions

View File

@ -66,7 +66,7 @@ const lastIndex = commands.length - 1;
{cmd.output && cmd.output.length > 0 && ( {cmd.output && cmd.output.length > 0 && (
<div class="terminal-output"> <div class="terminal-output">
{cmd.output.map((line) => ( {cmd.output.map((line) => (
<div class="terminal-output-line">{/* set:html={line} */} {line}</div> {/* Temporarily render raw line */} <div class="terminal-output-line" set:html={line} />
))} ))}
</div> </div>
)} )}

View File

@ -0,0 +1,15 @@
---
// src/layouts/MinimalLayout.astro
---
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Minimal Test</title>
</head>
<body>
<main>
<slot />
</main>
</body>
</html>

9
src/pages/test.astro Normal file
View File

@ -0,0 +1,9 @@
---
// src/pages/test.astro
import MinimalLayout from '../layouts/MinimalLayout.astro';
---
<MinimalLayout>
<h1>Test Page</h1>
<p>This is a minimal test page to isolate the build issue.</p>
</MinimalLayout>