21 lines
538 B
Plaintext
21 lines
538 B
Plaintext
/** @type {import('tailwindcss').Config} */
|
||
|
||
module.exports = {
|
||
// 只扫描 AgentChat 页面(唯一使用 Hero UI 的地方)
|
||
// 使用精确路径,避免误匹配 node_modules
|
||
content: [
|
||
"./src/views/AgentChat/index.js",
|
||
"./src/providers/AppProviders.js", // HeroUIProvider
|
||
// HeroUI v3 不再需要扫描 node_modules,样式通过 CSS 导入加载
|
||
],
|
||
|
||
darkMode: "class",
|
||
|
||
theme: {
|
||
extend: {},
|
||
},
|
||
|
||
// HeroUI v3 不再需要 plugins,样式通过 @import "@heroui/styles" 加载
|
||
plugins: [],
|
||
}
|