mirror of https://github.com/msgbyte/tailchat
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.
16 lines
317 B
JavaScript
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: [],
|
|
};
|