修复 Electron 应用窗口不显示的问题

- 修正 Electron 依赖版本为 28.0.0(解决安装问题)
- 更新 package.json 中的启动脚本,改进并发命令执行
- 修正主进程入口文件路径配置
- 调整 TypeScript 编译配置的根目录设置
- 添加 Windows 开发环境启动脚本 start-dev.bat
- 更新 .gitignore 排除编译产物和锁文件

问题原因:pnpm 默认阻止了 Electron 安装脚本执行,导致应用无法正常启动
This commit is contained in:
farion1231
2025-08-05 09:51:21 +08:00
parent e0a9c1ab4c
commit 35cb750d19
5 changed files with 34 additions and 7 deletions

15
start-dev.bat Normal file
View File

@@ -0,0 +1,15 @@
@echo off
echo Starting CC Switch Development Server...
echo.
echo [1/2] Starting Vite dev server...
start /B cmd /c "pnpm run dev:renderer"
echo [2/2] Waiting for Vite to start...
timeout /t 5 /nobreak > nul
echo Starting Electron...
pnpm run dev:electron
echo.
echo Development server started!