From 11dd93aff630fe7778e634f0e4471d030c82f053 Mon Sep 17 00:00:00 2001 From: Paul Graffam Date: Tue, 29 Jan 2019 16:55:27 -0500 Subject: [PATCH] Added postcss autoprefixing --- postcss.config.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 postcss.config.js diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..eb022cd --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,5 @@ +module.exports = { + plugins: [ + require('autoprefixer'), + ], +};