-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dotnet run opens the wrong URL #460
Comments
The template stopped automatically opening a browser tab a while back because it's annoying while working on a project when you already have the browser tab ready to go. Do you use Visual Studio? It creates |
Ahh must be the case yeah, I do indeed have a launchSettings.json file with |
@theprash I've seen this too. Either including a file that stops this happening, or including documentation to explain this, would be my suggestion. |
I found a better fix for this issue than including a default file. You can add |
Actually cancel that (my last comment). If we remove the file then the environment is defaulted to Production while running in dev. So I've opened PR #524 to add launchSettings.json to the minimal template as well. |
After creating a new project with the template, running the command
dotnet run
results in my browser opening a tab with the urlhttp://0.0.0.0:8085/
. However this is the backend's URL. Shouldn't it open the client instead, at:8080
?The text was updated successfully, but these errors were encountered: