mirror of
https://github.com/dergigi/boris.git
synced 2025-12-17 06:34:24 +01:00
- 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
13 lines
176 B
JavaScript
13 lines
176 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
'./index.html',
|
|
'./src/**/*.{ts,tsx}',
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|