I want to use SVG image for background on my website. I use Cloudinary as a provider for media library. After uploading, setting media in content, and using GraphQL query:
{
pages {
bg {
url
}
}
}
I get full raw url of that file like this: https://res.cloudinary.com/dyry2to5c/raw/upload/v1591948235/media_Design_bg_76fe252a25
It is returned as raw file without extension. When opening this url in browser the file is downloaded. But it is not working as a background in css.
So the question is, how to get an image with extension?