update pay function

This commit is contained in:
2025-11-22 16:12:09 +08:00
parent 5e333ad7e7
commit 75696b9e52
5 changed files with 23 additions and 109 deletions

18
tailwind.config.js Normal file
View File

@@ -0,0 +1,18 @@
/** @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()],
}