import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' // 纯浏览器开发调试(无需 Electron 窗口): // npm run dev:web → 浏览器打开 http://localhost:5173 直接游玩 // 差异说明:window.api(存档导出/导入、MOD 扫描)不存在时自动跳过——其余全功能等价。 export default defineConfig({ root: 'src/renderer', plugins: [react()], server: { port: 5179, strictPort: true, host: '0.0.0.0' } })