'Prevent IHP RunDevServer from automatically opening a window or tab
Is there a way to start the server without it automatically opening a tab? Something similar to webpack serve --no-open
Solution 1:[1]
Adding a little more to the accepted answer.
The answer can be found on the Recipes page in the Documentation along with other helpful best-practice solutions. Another solution is to append export IHP_BROWSER=echo
to the local .envrc
file.
// .envrc
PATH_add /nix/store/...
export IHP_BROWSER=echo
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | technoY2K |