mirror of
https://github.com/dergigi/boris.git
synced 2025-12-17 06:34:24 +01:00
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:
12
tailwind.config.js
Normal file
12
tailwind.config.js
Normal file
@@ -0,0 +1,12 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: [
|
||||
'./index.html',
|
||||
'./src/**/*.{ts,tsx}',
|
||||
],
|
||||
theme: {
|
||||
extend: {},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user