From a0241bfcd07d78207706875190d813d1d37547a8 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Thu, 26 Feb 2026 13:52:02 -0800 Subject: [PATCH] Feat: Tailwind PostCSS setup --- postcss.config.js | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 postcss.config.js diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..ba80730 --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,6 @@ +export default { + plugins: { + tailwindcss: {}, + autoprefixer: {} + } +};