From 9ab4cffba1b8ac3dd2a31a2ed52ffe727d3fa673 Mon Sep 17 00:00:00 2001 From: Lance Gliser Date: Wed, 18 Sep 2024 16:26:56 -0500 Subject: [PATCH] Renamed postcss.config file for compatibility. --- .postcssrc.yml | 4 ---- postcss.config.js | 7 +++++++ 2 files changed, 7 insertions(+), 4 deletions(-) delete mode 100644 .postcssrc.yml create mode 100644 postcss.config.js diff --git a/.postcssrc.yml b/.postcssrc.yml deleted file mode 100644 index d3aeff0..0000000 --- a/.postcssrc.yml +++ /dev/null @@ -1,4 +0,0 @@ -plugins: - tailwindcss/nesting: "postcss-nesting" - tailwindcss: {} - autoprefixer: {} diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..b7d9728 --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,7 @@ +export default { + plugins: { + "tailwindcss/nesting": "postcss-nesting", + tailwindcss: {}, + autoprefixer: {}, + }, +};