Hello, I am trying to add an image to my Astro. This is my first time using the framework so I'm sure there's something simple I'm not doing. I'm getting this error:
Unknown image output: "undefined" used for [file]
Here is my code:
<Image src={"/images/me.png"} alt="My Pic" width={200} height={200} />
I have the image integration plugged in and the file is under public/images
Any help would be appreciated.