From 252f0b6a0be2228202968f214f1b7c9d2f472e23 Mon Sep 17 00:00:00 2001 From: chunsenye Date: Thu, 16 Nov 2023 02:07:29 +0800 Subject: [PATCH] refactor(postcss-config): convert to ES Modules format --- postcss.config.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/postcss.config.js b/postcss.config.js index 33ad091d..5f6f43e4 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,6 +1,8 @@ -module.exports = { +const postcssConfig = { plugins: { tailwindcss: {}, autoprefixer: {}, }, -} +}; + +export default postcssConfig;