From 51df6597e7c7d422d45c07aec1afc108b225b504 Mon Sep 17 00:00:00 2001 From: eshanized Date: Sat, 11 Jan 2025 22:49:05 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20docs:=20add=20slots?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- postcss.config.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/postcss.config.js b/postcss.config.js index 2aa7205d..d92cb815 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,6 +1,11 @@ export default { plugins: { + // Tailwind CSS plugin for utility-first styling tailwindcss: {}, + + // Autoprefixer plugin to add vendor prefixes automatically for cross-browser compatibility autoprefixer: {}, + + // Additional plugins can be added here as needed }, };