- {#if issues.length > 0}
+ {#if loadingIssues}
+
+ {:else if issues.length > 0}
@@ -1601,17 +1624,22 @@
padding: 0.125rem 0.25rem;
border-radius: 0.25rem;
font-family: monospace;
+ color: var(--fog-text, #1f2937);
}
:global(.dark) .readme-container :global(code) {
background: var(--fog-dark-highlight, #475569);
+ color: var(--fog-dark-text, #f9fafb);
}
+ /* Code blocks with highlight.js are styled by vs2015 theme */
+ /* Pre blocks for non-highlighted code */
.readme-container :global(pre) {
- background: var(--fog-highlight, #f3f4f6);
padding: 1rem;
border-radius: 0.5rem;
overflow-x: auto;
+ /* Background will be overridden by vs2015 theme for hljs code blocks */
+ background: var(--fog-highlight, #f3f4f6);
}
:global(.dark) .readme-container :global(pre) {
diff --git a/static/healthz.json b/static/healthz.json
index 392982e..062172a 100644
--- a/static/healthz.json
+++ b/static/healthz.json
@@ -2,7 +2,7 @@
"status": "ok",
"service": "aitherboard",
"version": "0.3.2",
- "buildTime": "2026-02-14T08:45:25.090Z",
+ "buildTime": "2026-02-14T09:16:17.577Z",
"gitCommit": "unknown",
- "timestamp": 1771058725091
+ "timestamp": 1771060577577
}
\ No newline at end of file
diff --git a/vite.config.ts b/vite.config.ts
index 28efce6..7e2ff24 100644
--- a/vite.config.ts
+++ b/vite.config.ts
@@ -173,8 +173,8 @@ export default defineConfig({
// Suppress warning about highlight.js default import - it's used in reactive contexts that Vite can't detect
if (warning.message &&
typeof warning.message === 'string' &&
- warning.message.includes('highlight.js') &&
- warning.message.includes('never used')) {
+ (warning.message.includes('highlight.js') || warning.message.includes('"default" is imported')) &&
+ (warning.message.includes('never used') || warning.message.includes('but never used'))) {
return;
}
warn(warning);