From ccc3b2396b004c0aba3fe4ca570a1d7f6846a574 Mon Sep 17 00:00:00 2001 From: oonyeje Date: Sun, 2 Mar 2025 10:56:34 -0500 Subject: [PATCH] - use new postcss config for tailwind --- package.json | 1 + postcss.config.js | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 88e3d74..16ad834 100644 --- a/package.json +++ b/package.json @@ -41,6 +41,7 @@ "eslint-config-next": "latest", "postcss": "latest", "tailwindcss": "latest", + "@tailwindcss/postcss": "latest", "typescript": "latest" } } diff --git a/postcss.config.js b/postcss.config.js index 33ad091..50670cc 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,6 +1,7 @@ module.exports = { plugins: { - tailwindcss: {}, + // tailwindcss: {}, autoprefixer: {}, + "@tailwindcss/postcss": {} }, }