初始提交:代码可视化分析工具(CLI 分析器 + Web 可视化 + 设计文档)

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
朱葛
2026-07-22 15:19:31 +08:00
commit cb23f814c7
35 changed files with 74071 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
server: {
port: 5300,
open: true,
},
});