update pay function
This commit is contained in:
Binary file not shown.
18
tailwind.config.js
Normal file
18
tailwind.config.js
Normal file
@@ -0,0 +1,18 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
const { heroui } = require("@heroui/react");
|
||||
|
||||
module.exports = {
|
||||
content: [
|
||||
// React 组件
|
||||
"./src/**/*.{js,jsx,ts,tsx}",
|
||||
"./public/index.html",
|
||||
|
||||
// Hero UI 组件
|
||||
"./node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}",
|
||||
],
|
||||
theme: {
|
||||
extend: {},
|
||||
},
|
||||
darkMode: "class", // 支持深色模式(class 或 media)
|
||||
plugins: [heroui()],
|
||||
}
|
||||
Reference in New Issue
Block a user