diff --git a/postcss.config.js b/postcss.config.js index b4bee66..27ae1c9 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,6 +1,5 @@ -module.exports = { +export default { plugins: { '@tailwindcss/postcss': {}, - autoprefixer: {}, }, -}; +}; \ No newline at end of file diff --git a/tailwind.config.js b/tailwind.config.js index 399a80f..8f73d0b 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,7 +1,14 @@ +/** @type {import('tailwindcss').Config} */ export default { content: [ + // The entry point HTML file "./index.html", - "./App.tsx", // Be very specific for this test + + // Root-level components and entry points + "./App.tsx", + "./index.tsx", + + // All relevant subdirectories containing components, pages, or logic + "./{components,pages,services,utils}/**/*.{js,ts,jsx,tsx}", ], - // ... rest of your config -} \ No newline at end of file +}; \ No newline at end of file