From d35842ec0a1a0df4a9caa62a7a5da6abad7fb3cd Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Fri, 16 Jan 2026 15:56:38 +0000 Subject: [PATCH] Update postcss.config.mjs --- postcss.config.mjs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 postcss.config.mjs diff --git a/postcss.config.mjs b/postcss.config.mjs new file mode 100644 index 0000000..b80bbb4 --- /dev/null +++ b/postcss.config.mjs @@ -0,0 +1,10 @@ +// PostCSS config +// Vercel: Empty (Turbopack has issues with @tailwindcss/postcss + lightningcss) +// CodeSandbox: Uses CDN (no PostCSS needed) +// NO IMPORTS - Turbopack resolves all imports even if conditional! + +const config = { + plugins: {}, +}; + +export default config;