fix(config): Update application URL in launchSettings.json for development environment

- Changed the application URL from http://localhost:5000 to http://localhost:5001 to align with updated service configurations.
- This adjustment ensures proper routing during local development.
This commit is contained in:
Ho Ngoc Hai
2026-01-12 14:04:36 +07:00
parent b9065fe858
commit 07cb482edc

View File

@@ -6,7 +6,7 @@
"dotnetRunMessages": true,
"launchBrowser": true,
"launchUrl": "swagger",
"applicationUrl": "http://localhost:5000",
"applicationUrl": "http://localhost:5001",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}