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') + ] }