Files
vf_react/tailwind.config.js.v3-backup
2025-11-22 21:54:04 +08:00

21 lines
538 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/** @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: [],
}