Is there a tool that can convert SCSS to CSS while automatically adding vendor prefixes? I've tried using node-sass with npm, which worked well, but it doesn't add prefixes like box-sing: border-box;
or display: flex;
properties.
Note: I also tried the sass compiler extension in VS Code, but it outputs the CSS and CSS.MAP files in the same directory as the SCSS files, which is not what I want.