From 1df141cd9f0b5f457324d47dd433b88deacbae2a Mon Sep 17 00:00:00 2001 From: breadthe Date: Sun, 11 Aug 2024 15:38:41 -0500 Subject: [PATCH] Add PostCSS support - this enables things like arbitrary values --- postcss.config.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 postcss.config.js diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..8df3854 --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,8 @@ +module.exports = { + plugins: { + 'postcss-import': {}, + 'tailwindcss/nesting': {}, + tailwindcss: {}, + autoprefixer: {}, + } +} \ No newline at end of file