1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-23 12:15:06 +03:00
guide/front/postcss.config.js

12 lines
206 B
JavaScript

const autoprefixer = require('autoprefixer')
const plugins = [
autoprefixer({
browsers: ['last 3 versions', '> 2%', 'ie >= 9', 'Firefox >= 30', 'Chrome >= 30']
})
]
module.exports = {
plugins
}