I would like to know how I can get clean image url's with next/image component in Next.js.
Current URL Example below:
https://www.example.com/_next/image?url=%2Fimages%2Fhome%2FDog-image-1.jpg&w=384&q=100
Is it possible to change the above URL every time like the URL below:
https://www.example.com/_next/image/Dog-image-1.jpg
or like this:
https://www.example.com/_next/image/images/home/Dog-image-1.jpg
How to get clean URLs using next/image component for images.
Thank You for your participation.