From 69999fa94814bdee6e7c8f13392b0a3f2b5b6f30 Mon Sep 17 00:00:00 2001 From: Jeff Avallone Date: Sun, 11 Feb 2018 07:04:36 -0500 Subject: [PATCH] Fixing postcss config --- postcss.config.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/postcss.config.js b/postcss.config.js index 1e555f4..f76560e 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,6 +1,6 @@ module.exports = { - use: [ - 'precss', - 'autoprefixer' + plugins: [ + require('precss'), + require('autoprefixer') ] };