From 4c709653321982457374c90ca2201f262999dea9 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Fri, 30 Aug 2019 17:44:23 +0100 Subject: [PATCH] Use the array syntax for plugins --- vuejs/postcss.config.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/vuejs/postcss.config.js b/vuejs/postcss.config.js index c9d57ba..62550eb 100644 --- a/vuejs/postcss.config.js +++ b/vuejs/postcss.config.js @@ -1,8 +1,8 @@ module.exports = { - plugins: { - 'postcss-import': {}, - tailwindcss: {}, - 'postcss-nested': {}, - autoprefixer: {} - } + plugins: [ + require('postcss-import'), + require('tailwindcss'), + require('postcss-nested'), + require('autoprefixer') + ] }