There is a set of images .jpg .png and one .svg
what will be more effective:
<img src='./images/imgindex.png' srcset="./images/imgindex@2x.png 2x, ./images/{imgindex@3x.png 3x" alt=' ' width=33 height=33/> or
<img src='./images/imgindex.svg' alt=' ' width=33 height=33/> ? ... because the vector will scale without loss of quality, but in the same size and without additional. resources.
can .svg replace a set of images for different conditions? Or, is it possible / better to somehow combine them?