fix: apex hero broken on home tile
The review and find both stored a byte-identical hero.png, so Astro deduplicated them to a single asset; the <Image>-rendered review detail emitted only webp variants and the home tile's <img src> still pointed at the original PNG URL — which Astro never wrote to disk. - Switch the review MDX from explicit <Image> to standard markdown image syntax (consistent with every other review) - Re-save the review's hero.png so its bytes differ from the find's copy, giving it its own asset hash with the original PNG emitted Build clean; home tile resolves to /_astro/hero.Ckihos5I.png (680 KB).
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 495 KiB After Width: | Height: | Size: 664 KiB |
@@ -10,10 +10,7 @@ source: "Brett Terpstra"
|
|||||||
fromFind: "apex-markdown-processor"
|
fromFind: "apex-markdown-processor"
|
||||||
---
|
---
|
||||||
|
|
||||||
import hero from './hero.png';
|

|
||||||
import { Image } from 'astro:assets';
|
|
||||||
|
|
||||||
<Image src={hero} alt="Apex rendering a Markdown document with inline images in iTerm" />
|
|
||||||
|
|
||||||
*Apex piped through `cat`-and-render: tables, citations, and inline screenshots all visible at the command line.*
|
*Apex piped through `cat`-and-render: tables, citations, and inline screenshots all visible at the command line.*
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user