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
8 lines
81 B
JavaScript
8 lines
81 B
JavaScript
export default {
|
|
plugins: {
|
|
tailwindcss: {},
|
|
autoprefixer: {},
|
|
},
|
|
}
|
|
|