From c82bd551731f2d8f3d46edea3ab2fac47580f690 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Thu, 15 Jan 2026 13:02:40 +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;