After attempting to add prefixes to my scss files, I came across the autoprefixer tool. However, I discovered that it only supports CSS files. Is there a way to utilize autoprefixer with scss files?
Here are the commands for Autoprefixer:
npm install postcss-cli autoprefixer
npx postcss *.css --use autoprefixer -d build/
Thank you!