Images and vector artwork are embedded in assets/ and referenced inline via src — no declaration block, no $id indirection.

Assets

conceptimages & vectors

Images and vector artwork are embedded in assets/ and referenced inline via src — no declaration block, no $id indirection.

All raster images are converted to WebP at 0.85 quality by the Figma plugin. External URLs are a fallback only. If a URL reference fails to load, the renderer shows an asset not loaded error state — no silent failure.

AttrTypeDescription
assets/img.webppatternEmbedded raster (default for all exports).
assets/icon.svgpatternEmbedded vector artwork.
https://…patternExternal URL — fallback only.

Example

<img src="assets/hero.webp" w="390" h="240" fit="cover" />
<img src="assets/icon-close.svg" w="24" h="24" />
<img src="https://example.com/photo.jpg" w="390" h="240" fit="cover" />