update pay function

This commit is contained in:
2025-11-23 06:36:39 +08:00
parent aaef2272f1
commit eef1dbfe8d
4 changed files with 34 additions and 8 deletions

19
tailwind.config.js Normal file
View File

@@ -0,0 +1,19 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
// 扫描所有使用 HeroUI 和 Tailwind 的文件
content: [
"./src/views/AgentChat/**/*.{js,jsx,ts,tsx}",
"./src/providers/AppProviders.js",
"./node_modules/@heroui/react/dist/**/*.{js,jsx,ts,tsx}",
"./node_modules/@heroui/styles/dist/**/*.{js,jsx,ts,tsx}",
],
darkMode: "class",
theme: {
extend: {},
},
plugins: [],
}