20 lines
416 B
JavaScript
20 lines
416 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
|
// 只扫描项目源码,不扫描 node_modules
|
|
// HeroUI v3 的样式通过 @import "@heroui/styles" 加载,无需扫描
|
|
content: [
|
|
"./src/views/AgentChat/index.js",
|
|
"./src/views/AgentChat/components/**/*.{js,jsx}",
|
|
"./src/providers/AppProviders.js",
|
|
],
|
|
|
|
darkMode: "class",
|
|
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
|
|
plugins: [],
|
|
}
|