<!-- Please provide all of the information requested below. We're a small team and without all of this information it's not possible for us to help and your bug report will be closed. --> I'm currently using v4.0.11 as a Vite plugin with Node v22.14.0. when using image-set() CSS functional notations in a css file and processing them with the tailwind vite plugin, ```css background-image: image-set( url("@/assets/image1.avif") 1x, url("@/assets/image2.avif") 2x, ); ``` becomes ```css background-image:image-set(url(/assets/image1-xxx.avif) 1x,url(2x)) ``` I've made a little repo for reproduction purposes: [RaBic/tw4-imageset-bug](https://github.com/RaBic/tw4-imageset-bug)