You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tailchat/web/tailwind.config.js

24 lines
428 B
JavaScript

// tailwind.config.js
// Reference: https://www.tailwindcss.cn/docs/configuration
module.exports = {
purge: {
enabled: process.env.NODE_ENV !== 'development',
content: ['./src/**/*.{js,jsx,ts,tsx}'],
},
darkMode: 'class', // or 'media'
theme: {
extend: {
borderRadius: {
"1/2": '50%'
}
},
},
variants: {
extend: {
borderRadius: ['hover'],
},
},
plugins: [],
};