Remove redundant Tailwind Windows oxide dependency
Some checks failed
CI / verify (push) Has been cancelled

This commit is contained in:
2026-04-07 00:08:35 +08:00
parent ddcb5d5c8c
commit 9d2fc9e4b8
5 changed files with 12 additions and 4 deletions

8
.env.local Normal file
View File

@@ -0,0 +1,8 @@
VITE_LLM_BASE_URL="https://ark.cn-beijing.volces.com/api/v3"
LLM_API_KEY="eb750614-e0b5-402a-bfea-4224862d251e"
VITE_LLM_MODEL="doubao-1-5-pro-32k-character-250715"
DASHSCOPE_BASE_URL="https://dashscope.aliyuncs.com/api/v1"
DASHSCOPE_API_KEY="sk-65a0c6fa5e294b9887ace860f9d65990"
EMBEDDING_MODEL="doubao-embedding-text-240715"
VOLCENGINE_ACCESS_KEY_ID="AKLTZWFjMmYzZTdjZTIxNDRiNTkzMTZiMTk2NzVmNTUxOGI"
VOLCENGINE_SECRET_ACCESS_KEY="TURRMk56bGhZalE0TjJReE5ERmpNMkpoTUdaa1lqRmtaVGt5TVRrM1lXSQ=="

1
.gitignore vendored
View File

@@ -4,5 +4,4 @@ dist/
coverage/ coverage/
.DS_Store .DS_Store
*.log *.log
.env.local
/public/generated-custom-world-scenes /public/generated-custom-world-scenes

View File

@@ -10,3 +10,4 @@
- 修改包含中文的文件后,优先运行仓库里的编码检查,确保没有把文本写坏。 - 修改包含中文的文件后,优先运行仓库里的编码检查,确保没有把文本写坏。
- UI面板中不要默认写一些规则描述文案清爽一些按照游戏UI设计规范设计即可。 - UI面板中不要默认写一些规则描述文案清爽一些按照游戏UI设计规范设计即可。
- UI设计需要兼顾网页端、移动端双端的使用体验确保在不同设备上都能正常显示和操作移动端优先考虑。 - UI设计需要兼顾网页端、移动端双端的使用体验确保在不同设备上都能正常显示和操作移动端优先考虑。
- 不要在gitignore中添加.env.local文件。

5
package-lock.json generated
View File

@@ -8,7 +8,6 @@
"name": "react-example", "name": "react-example",
"version": "0.0.0", "version": "0.0.0",
"dependencies": { "dependencies": {
"@tailwindcss/oxide-win32-x64-msvc": "^4.2.2",
"@tailwindcss/vite": "^4.1.14", "@tailwindcss/vite": "^4.1.14",
"@vitejs/plugin-react": "^5.0.4", "@vitejs/plugin-react": "^5.0.4",
"dotenv": "^17.2.3", "dotenv": "^17.2.3",
@@ -1389,6 +1388,7 @@
"cpu": [ "cpu": [
"x64" "x64"
], ],
"optional": true,
"os": [ "os": [
"win32" "win32"
], ],
@@ -7441,7 +7441,8 @@
"@tailwindcss/oxide-win32-x64-msvc": { "@tailwindcss/oxide-win32-x64-msvc": {
"version": "4.2.2", "version": "4.2.2",
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.2.2.tgz", "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.2.2.tgz",
"integrity": "sha512-1T/37VvI7WyH66b+vqHj/cLwnCxt7Qt3WFu5Q8hk65aOvlwAhs7rAp1VkulBJw/N4tMirXjVnylTR72uI0HGcA==" "integrity": "sha512-1T/37VvI7WyH66b+vqHj/cLwnCxt7Qt3WFu5Q8hk65aOvlwAhs7rAp1VkulBJw/N4tMirXjVnylTR72uI0HGcA==",
"optional": true
}, },
"@tailwindcss/vite": { "@tailwindcss/vite": {
"version": "4.2.2", "version": "4.2.2",

View File

@@ -28,7 +28,6 @@
"check:content": "npm run check:data && npm run check:overrides && npm run check:smoke" "check:content": "npm run check:data && npm run check:overrides && npm run check:smoke"
}, },
"dependencies": { "dependencies": {
"@tailwindcss/oxide-win32-x64-msvc": "^4.2.2",
"@tailwindcss/vite": "^4.1.14", "@tailwindcss/vite": "^4.1.14",
"@vitejs/plugin-react": "^5.0.4", "@vitejs/plugin-react": "^5.0.4",
"dotenv": "^17.2.3", "dotenv": "^17.2.3",