From 4ed5c742adc054cb4cd49d447ce1a1af8c5394e4 Mon Sep 17 00:00:00 2001 From: mars-alien Date: Thu, 11 Sep 2025 16:57:04 +0530 Subject: [PATCH] I fixed postcss.config as bundler(vite) was trying to load postcss.config as ES Module(ESM) but file is postcss.config.cts.So I used CJS Export. --- client/postcss.config.cjs | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 client/postcss.config.cjs diff --git a/client/postcss.config.cjs b/client/postcss.config.cjs new file mode 100644 index 00000000..cb438c39 --- /dev/null +++ b/client/postcss.config.cjs @@ -0,0 +1,7 @@ +// client/postcss.config.cjs +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, + }; \ No newline at end of file