diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..fdf0fe8 --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,14 @@ +module.exports = { + plugins: { + 'autoprefixer': { + overrideBrowserslist: [ + 'Android >= 4.0', + 'iOS >= 8' + ] + }, + 'postcss-pxtorem': { + rootValue: 16, + propList: ['*'] + } + } +};