Performance: CSS file size analysis
HIGH IMPACT
This affects page load speed by increasing or decreasing the CSS file size that the browser must download and parse before rendering.
module.exports = {
content: ['./src/**/*.{html,js,jsx,ts,tsx}'],
theme: { extend: {} },
plugins: [],
};
@tailwind base;
@tailwind components;
@tailwind utilities;@tailwind base;
@tailwind components;
@tailwind utilities;
/* No purge or content configuration */| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Full Tailwind CSS without purge | N/A | N/A | High due to blocking render | [X] Bad |
| Tailwind CSS with purge enabled | N/A | N/A | Low, minimal blocking | [OK] Good |