From b2c3fecbd146f08711cf9ef1054f68e048f6cd1e Mon Sep 17 00:00:00 2001 From: Miguel Ángel Moreno Date: Mon, 26 Dec 2022 18:35:44 +0100 Subject: chore: Add PostCSS configuration --- postcss.config.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 postcss.config.js diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..5c7bdd0 --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,8 @@ +module.exports = { + plugins: { + 'postcss-import': {}, + tailwindcss: {}, + autoprefixer: {}, + cssnano: process.env.NODE_ENV === 'production' ? {} : false + } +} -- cgit v1.2.3