Fix CI/CD pipeline issues from code review FRE-4690

- web-ci.yml: Remove web/ path refs (app is at repo root), fix cache paths, update Vercel action to v30
- ios-ci.yml: Fix swift-format tool name, use debug build for PR CI, add TestFlight deployment job, use env var for Xcode path
- Scaffold package.json, tsconfig.json, vite.config.ts for web project at root
This commit is contained in:
2026-05-10 04:53:24 -04:00
parent ad6b4c9c1c
commit 5b31f088cc
6 changed files with 101 additions and 18 deletions

7
vite.config.ts Normal file
View File

@@ -0,0 +1,7 @@
import { defineConfig } from 'vite';
export default defineConfig({
build: {
outDir: 'dist',
},
});