Why the src of Image tag doesn’t recognizes my jpg?

I’m trying to insert an image in my portfolio, but for some reason the tag returns 404 and the Next Image returns the error The requested resource isn't a valid image for /myImage.jpg received text/html

this is the code block:

import Image from "next/image";
import { ReactElement } from "react";

const MyImage = ():ReactElement => {
    return (
        <Image
            fill
            src='/myImage.jpg'
            alt="MyImage"
            />
    )
}

export default MyImage