This commit is contained in:
2018-08-14 00:02:06 -05:00
commit 4757abfff3
29 changed files with 14255 additions and 0 deletions

10
postcss.config.js Normal file
View File

@@ -0,0 +1,10 @@
const browserList = [
'last 3 versions',
'> 1%'
];
module.exports = {
plugins: [
require('autoprefixer')(browserList)
]
};