aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel Ángel Moreno <mail@migalmoreno.com>2022-12-26 18:35:44 +0100
committerMiguel Ángel Moreno <mail@migalmoreno.com>2022-12-26 18:35:44 +0100
commitb2c3fecbd146f08711cf9ef1054f68e048f6cd1e (patch)
tree411a257a74b38d3adb771f99ddac07336511ffc8
parent64c65cddafcc2639cad2900425d5aa5a51346d86 (diff)
chore: Add PostCSS configuration
-rw-r--r--postcss.config.js8
1 files changed, 8 insertions, 0 deletions
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
+ }
+}