From dcdaa97d0fad918d0f9819a7b03904fe9e96bd22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9B=90=EB=8D=94?= Date: Mon, 4 Jan 2021 20:13:15 +0900 Subject: [PATCH] feat: postcss config --- postcss.config.js | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/postcss.config.js b/postcss.config.js index 33ad091..2048076 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,6 +1,17 @@ module.exports = { - plugins: { - tailwindcss: {}, - autoprefixer: {}, - }, -} + plugins: [ + 'tailwindcss', + [ + 'postcss-preset-env', + { + autoprefixer: { + flexbox: 'no-2009', + }, + stage: 3, + features: { + 'custom-properties': false, + }, + }, + ], + ], +} \ No newline at end of file