diff --git a/docs/src/content/pages/recipes/astro-images.mdoc b/docs/src/content/pages/recipes/astro-images.mdoc index 324101c34..c8fe13d2e 100644 --- a/docs/src/content/pages/recipes/astro-images.mdoc +++ b/docs/src/content/pages/recipes/astro-images.mdoc @@ -87,7 +87,7 @@ Just like standalone image fields, you will need to configure the Zod schema wit Using Astro assets within [content components](/docs/content-components) is a little more complicated. -Since the image is not stored in the frontmatter data but directly within the content body, you'll need to dynamically import the image inside the compopnent you're using to render that content component. +Since the image is not stored in the frontmatter data but directly within the content body, you'll need to dynamically import the image inside the component you're using to render that content component. {% aside icon="⚠️" %} The `publicPath` for those images must start with `/src/assets` for the dynamic import to work in Astro 😅 @@ -113,4 +113,4 @@ captionImage: block({ }) ``` -Read the [Astro guide on dynamic image imports](https://docs.astro.build/en/recipes/dynamically-importing-images/) for details on the implementation. \ No newline at end of file +Read the [Astro guide on dynamic image imports](https://docs.astro.build/en/recipes/dynamically-importing-images/) for details on the implementation.