postcss.config.js

4,800 阅读1分钟
var autoprefixer = require("autoprefixer");

module.exports = {
    plugins: [
        autoprefixer({
            browsers: ["last 5 version"]
        })
    ]
};