Tag: til
All the articles with the tag "til".
- Astro Image In Content
Today I learned you can inline remote images in Astro content collections using the
image()schema helper. No more manual imports.schema: ({ image }) => z.object({ ogImage: image().optional(), });Game changer for authoring ergonomics.