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

16 lines
317 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: {},
},
variants: {},
plugins: [],
};