From 716a22c5428bbc80d1126f5d0c78e57ba47af26c Mon Sep 17 00:00:00 2001 From: Felix Schulze Date: Wed, 26 Nov 2025 12:49:00 +0100 Subject: [PATCH] Update postcss.config.mjs --- postcss.config.mjs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/postcss.config.mjs b/postcss.config.mjs index 7aed25c..c878d67 100644 --- a/postcss.config.mjs +++ b/postcss.config.mjs @@ -1,6 +1,8 @@ const config = { - plugins: ["@tailwindcss/postcss"], - cssnano: {}, + plugins: { + '@tailwindcss/postcss': {}, + cssnano: {}, + }, }; export default config;