Files
kolaytercih/.claude/launch.json
bilalgursen dc6d894a37
All checks were successful
Deploy / deploy (push) Successful in 10m26s
Refactor code structure for improved readability and maintainability
2026-07-30 03:17:12 +03:00

24 lines
464 B
JSON

{
"version": "0.0.1",
"configurations": [
{
"name": "dev",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev"],
"port": 3000
},
{
"name": "dev-3100",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev", "--", "-p", "3100"],
"port": 3100
},
{
"name": "prod-3100",
"runtimeExecutable": "pnpm",
"runtimeArgs": ["start", "-p", "3100"],
"port": 3100
}
]
}