Files
boris/postcss.config.js
Gigi 6a84646b0b chore(tailwind): setup Tailwind CSS with preflight on
- Install tailwindcss, postcss, autoprefixer
- Add tailwind.config.js and postcss.config.js
- Create src/styles/tailwind.css with base/components/utilities
- Import Tailwind before index.css in main.tsx
2025-10-13 21:17:11 +02:00

8 lines
81 B
JavaScript

export default {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}