Nworm
© 2025 Nworm. Powered by astro
Made with by Nworm.
标签:astro

在 Astro 优化 md 文件里的远程图片

发表于: 2024-3-27 | 更新于: 2025-4-30 | 预计阅读时长: 2.3 分钟 | 标签: Astro

Astro 现在已经支持优化 md 文件里的远程图片(#13254

相比于 Gatsby,Astro 原生支持优化图片,并且提供了 Image Service API 可以很方便地自定义, 需要优化时在 .astro 文件里可以使用内置的 <Image /> 组件,支持优化本地图片和远程图片。
但目前对于 .md 则只优化本地图片(看源码的意思,似乎以后也不会支持优化远程图片)。

这里提供了两种本质上一样的解决方法。

阅读更多