19 lines
377 B
JavaScript
19 lines
377 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
const { heroui } = require("@heroui/react");
|
|
|
|
module.exports = {
|
|
// 只扫描 AgentChat 页面(唯一使用 Hero UI 的地方)
|
|
content: [
|
|
"./src/views/AgentChat/**/*.{js,jsx}",
|
|
"./src/providers/AppProviders.js", // HeroUIProvider
|
|
],
|
|
|
|
darkMode: "class",
|
|
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
|
|
plugins: [heroui()],
|
|
}
|