Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
43875e2
Add ImageKit media guide
manu4543 May 5, 2026
de8da01
docs(images): enhance ImageKit integration details in images guide
manu4543 May 5, 2026
069f07d
docs(images): add AI-powered transformations and upload form examples…
manu4543 May 5, 2026
ff109dc
Update src/content/docs/en/guides/media/imagekit.mdx
imagekitio May 21, 2026
dd5119b
Update src/content/docs/en/guides/media/imagekit.mdx
imagekitio May 21, 2026
daa2e88
Update src/content/docs/en/guides/media/imagekit.mdx
imagekitio May 21, 2026
bdf79ce
Update src/content/docs/en/guides/media/imagekit.mdx
imagekitio May 21, 2026
638bd57
Update src/content/docs/en/guides/images.mdx
imagekitio May 21, 2026
af539a9
Update src/content/docs/en/guides/media/imagekit.mdx
imagekitio May 21, 2026
eba1982
Update src/content/docs/en/guides/media/imagekit.mdx
imagekitio May 21, 2026
2da760a
Update src/content/docs/en/guides/media/imagekit.mdx
imagekitio May 21, 2026
15d86f9
Update src/content/docs/en/guides/media/imagekit.mdx
imagekitio May 21, 2026
dcff9ef
Update public/logos/imagekit.svg
imagekitio May 21, 2026
6c2077c
Update src/content/docs/en/guides/media/imagekit.mdx
imagekitio May 21, 2026
7b07377
Update src/content/docs/en/guides/media/imagekit.mdx
imagekitio May 21, 2026
90be45d
Add ImageKit Video Player integration and usage instructions
manu4543 May 21, 2026
65ad937
Clarify AI subtitle generation and chapter detection in Video Player …
manu4543 May 21, 2026
8ea335d
docs(imagekit.mdx): address review comments
manu4543 May 28, 2026
0945061
Merge branch 'main' into add-imagekit-media-guide
ArmandPhilippot May 30, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions public/logos/imagekit.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 4 additions & 1 deletion src/content/docs/en/guides/images.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,10 @@ Use the HTML `<img>` element when you cannot use the `<Image />` component, for

Image CDNs work with [all Astro image options](#images-in-astro-files). Use an image's full URL as the `src` attribute in the `<Image />` component, an `<img>` tag, or in Markdown notation. For image optimization with remote images, also [configure your authorized domains or URL patterns](#authorizing-remote-images).

Alternatively, the CDN may provide its own SDKs to more easily integrate in an Astro project. For example, Cloudinary supports an [Astro SDK](https://astro.cloudinary.dev/) which allows you to easily drop in images with their `CldImage` component or a [Node.js SDK](https://cloudinary.com/documentation/node_integration) that can generate URLs to use with an `<img>` tag in a Node.js environment.
Alternatively, the CDN may provide its own SDKs to more easily integrate in an Astro project. For example:

- Cloudinary supports an [Astro SDK](https://astro.cloudinary.dev/) which allows you to easily drop in images with their `CldImage` component or a [Node.js SDK](https://cloudinary.com/documentation/node_integration) that can generate URLs to use with an `<img>` tag in a Node.js environment.
- ImageKit provides an [Astro integration](https://github.com/imagekit-developer/imagekit-astro) that registers an image service. This means Astro's built-in `<Image />` and `<Picture />` components, along with Markdown `![]()` and MDX images, are all routed through ImageKit automatically. It adds CDN delivery, automatic AVIF/WebP conversion, responsive `srcset`, and on-the-fly transformations without changing your existing image syntax.

<ReadMore>See the full API reference for the [`<Image />`](/en/reference/modules/astro-assets/#image-) and [`<Picture />`](/en/reference/modules/astro-assets/#picture-) components.</ReadMore>

Expand Down
Loading
Loading