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
This commit is contained in:
Gigi
2025-10-13 21:17:11 +02:00
parent e921967082
commit 6a84646b0b
6 changed files with 106 additions and 0 deletions

12
tailwind.config.js Normal file
View File

@@ -0,0 +1,12 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./index.html',
'./src/**/*.{ts,tsx}',
],
theme: {
extend: {},
},
plugins: [],
}