修改前端技术栈后,改为react技术

This commit is contained in:
2026-03-17 15:54:00 +08:00
parent 18ee2b9b2c
commit 85f2bbe78c
21 changed files with 1384 additions and 26 deletions

View File

@@ -0,0 +1,13 @@
/** @type {import('tailwindcss').Config} */
export default {
// --- 关键点在这里 ---
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}", // 确保这行存在且路径正确
],
// -------------------
theme: {
extend: {},
},
plugins: [],
}