bulk-questionnaire-upload/frontend/vercel.json
vee1e 1c0338539e
feat: add Vercel deployment config and runtime API URL loading
- Add vercel.json with Angular build config and SPA rewrites
- Increase Angular bundle budgets to unblock production build
- Fix TS strict null error in runtime-config.ts (return _config ?? {})
- Load API_URL from /assets/config.json at bootstrap via prebuild script
- Wire getRuntimeConfig() into FormService instead of hardcoded localhost

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-02 12:21:52 +05:30

9 lines
226 B
JSON

{
"framework": "angular",
"buildCommand": "npm run build",
"outputDirectory": "dist/mform-upload/browser",
"installCommand": "npm install",
"rewrites": [
{ "source": "/(.*)", "destination": "/index.html" }
]
}