update pay function

This commit is contained in:
2025-11-22 16:41:22 +08:00
parent 75e7e7e19c
commit 357c03aee2
8 changed files with 44 additions and 2603 deletions

View File

@@ -1,11 +1,12 @@
/** @type {import('tailwindcss').Config} */
const { heroui } = require("@heroui/react");
module.exports = {
// 只扫描 AgentChat 页面(唯一使用 Hero UI 的地方)
// 使用精确路径,避免误匹配 node_modules
content: [
"./src/views/AgentChat/**/*.{js,jsx}",
"./src/views/AgentChat/index.js",
"./src/providers/AppProviders.js", // HeroUIProvider
// HeroUI v3 不再需要扫描 node_modules样式通过 CSS 导入加载
],
darkMode: "class",
@@ -14,5 +15,6 @@ module.exports = {
extend: {},
},
plugins: [heroui()],
// HeroUI v3 不再需要 plugins样式通过 @import "@heroui/styles" 加载
plugins: [],
}