Hello Astro community, I'm working on a buisness site for a friend. Implemented a image slider via CSS and now I thought it would be a great idea to let Astro optimize the images. Sadly I get a internal server error (500).
Code:
---
import { Image } from 'astro:assets';
import Allianz from '@assets/insurance-provider/allianz.png';
---
<div class="insurance-slider">
<!-- WORKS - same path -->
<div class="item item1"><img src="src/assets/insurance-provider/allianz.png" alt="Logo of Allianz Insurance"></div>
<!-- Error 500 -->
<div class="item item1"><Image src={Allianz} alt="Logo of Allianz Insurance"></div>
...
</div>
Normal img elements load fine. I hope someone can point me to the issue.. 🙂