nxtgauge-frontend-solid/.claude/launch.json
Tracewebstudio Dev 49b979eb16
All checks were successful
build-and-release / build (push) Successful in 1m40s
fix: eliminate API prefix double-encoding across all dashboard components
All dashboard pages and widgets had one of three bugs:
- const API = "/api" combined with paths already starting /api → double prefix
- const API = '/api/gateway' → nonexistent gateway path prefix
- cleanPath stripping /api off paths when API was set to ""

Fix: set const API = "" uniformly and remove cleanPath rewrite in all 30+
affected files (CompanyJobsPage, CompanyApplicationsPage, CreditsPage,
JobSeekerJobsPage, CustomerRequirementsPage, all widgets, etc.).

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-07-18 11:40:20 +02:00

11 lines
186 B
JSON

{
"version": "0.0.1",
"configurations": [
{
"name": "frontend-solid",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev"],
"port": 3001
}
]
}