stcjs plugin to add vendor prefixes to CSS rules
npm install stc-css-autoprefixer --save-devin stc.config.js file, add:
var autoprefix = require('stc-css-autoprefixer');
stc.transpile({
autoprefix: {plugin: autoprefix, include: /\.css$/, options: {
{
browsers: ['> 1%', 'IE 7'],
cascade: false
}
}}
});See https://github.com/postcss/autoprefixer#options get more options.