chore: Disable automatic start of Angular dev server (start it separate from dotnet run)

This commit is contained in:
ChronosX88 2019-09-24 21:05:43 +04:00
parent 98f6142255
commit 78368efd4c
Signed by: ChronosXYZ
GPG Key ID: 085A69A82C8C511A
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@
"instructors_crud_test_task": {
"commandName": "Project",
"launchBrowser": true,
"applicationUrl": "https://localhost:5001;http://localhost:5000",
"applicationUrl": "http://localhost:5000",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}

View File

@ -63,7 +63,7 @@ namespace instructors_crud_test_task
if (env.IsDevelopment())
{
spa.UseAngularCliServer(npmScript: "start");
spa.UseProxyToSpaDevelopmentServer("http://localhost:4200");
}
});
}