🧹 清理重复配置文件

- 删除根目录中重复的 NestJS 配置文件
- 删除 tsconfig.json, tsconfig.build.json, eslint.config.mjs, .prettierrc
- 保留 wwjcloud-nest/ 目录中的完整配置
- 避免配置冲突,确保项目结构清晰
This commit is contained in:
wanwu
2025-10-14 23:56:20 +08:00
parent 7a160dd04b
commit e7a1d6b4d6
3263 changed files with 356 additions and 112679 deletions

View File

@@ -0,0 +1,43 @@
<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg">
<!-- 定义渐变和阴影 -->
<defs>
<linearGradient id="bgGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#3B82F6;stop-opacity:1" />
<stop offset="50%" style="stop-color:#2563EB;stop-opacity:1" />
<stop offset="100%" style="stop-color:#1E40AF;stop-opacity:1" />
</linearGradient>
<filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
<feDropShadow dx="2" dy="4" stdDeviation="3" flood-color="#000000" flood-opacity="0.15"/>
</filter>
<filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur stdDeviation="2" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- 背景圆形 -->
<circle cx="60" cy="60" r="55" fill="url(#bgGradient)" filter="url(#shadow)"/>
<!-- 云朵形状 - 主形状 -->
<path d="M20 50 Q10 40 20 30 Q30 20 40 30 Q50 20 60 30 Q70 20 80 30 Q90 40 80 50 Q90 60 80 70 Q70 80 60 70 Q50 80 40 70 Q30 80 20 70 Q10 60 20 50"
fill="white" opacity="0.95" filter="url(#glow)"/>
<!-- 字母 W - 主要标识 -->
<path d="M25 45 L35 65 L45 50 L55 65 L65 45"
stroke="white" stroke-width="5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<!-- 装饰点 -->
<circle cx="15" cy="15" r="2.5" fill="white" opacity="0.9"/>
<circle cx="105" cy="15" r="2.5" fill="white" opacity="0.9"/>
<circle cx="15" cy="105" r="2.5" fill="white" opacity="0.9"/>
<circle cx="105" cy="105" r="2.5" fill="white" opacity="0.9"/>
<!-- 中心装饰 -->
<circle cx="60" cy="60" r="4" fill="white" opacity="0.7"/>
<!-- 外圈装饰 -->
<circle cx="60" cy="60" r="50" stroke="white" stroke-width="1" fill="none" opacity="0.3"/>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB