chore: Add minimal layout and test page for build diagnostics
This commit is contained in:
parent
0be626866d
commit
ee0f30ae69
|
@ -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>
|
||||||
)}
|
)}
|
||||||
|
|
|
@ -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>
|
|
@ -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>
|
Loading…
Reference in New Issue