I feel like this should be simple but I can't find the answer anywhere. I'm trying to disable Play Framework from launching a browser window on localhost:9000
when using a run configuration in Intellij when using sbt Task
for the run configuration.
I know how to run a project on something other than the default port with sbt run <my_port>
.
I can get the run configuration to launch a browser window with my custom port loaded automatically:
Adding a task to launch a web browser on a specific port Intellij
But I also want to disable the default behavior of launching a browser window with localhost:9000
. Any ideas?