Is there a vite-plugin for compiling -webkit rules in sass?
So I'm trying to solve an issue where I'm using "backdrop-filter" in my sass which works fine in Chrome but doesn't work in Safari. So if I do it the old-school way and add -webkit-backdrop-filter below it works fine. So I'm wondering if there's a watch/build plugin for vite that automatically adds those webkit prefixes so I don't have to add them in my sass?
2 Replies
look for
autoprefixer
Thank you!