From f05a472585b2506da21aed71f0252b2d4c04a221 Mon Sep 17 00:00:00 2001 From: Indrajith K L Date: Mon, 5 Feb 2024 04:15:02 +0530 Subject: React Slides * Adds useState * State * useEffect * Side Effects --- postcss.config.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 postcss.config.js (limited to 'postcss.config.js') diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..36017cf --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,13 @@ +import tailwindcss from 'tailwindcss' +import autoprefixer from 'autoprefixer' + +const config = { + plugins: [ + //Some plugins, like tailwindcss/nesting, need to run before Tailwind, + tailwindcss(), + //But others, like autoprefixer, need to run after, + autoprefixer, + ], +} + +export default config -- cgit v1.2.3