防止 IHP RunDevServer 自动打开 window 或选项卡

Prevent IHP RunDevServer from automatically opening a window or tab

有没有办法在不自动打开选项卡的情况下启动服务器?类似于 webpack serve --no-open

您可以在 运行 开发服务器之前将 IHP_BROWSER 环境变量设置为 echo

export IHP_BROWSER=echo
./start

这在 IHP 食谱中有描述:

https://ihp.digitallyinduced.com/Guide/recipes.html#dont-autoopen-the-app-in-the-browser

在已接受的答案中再添加一点。

可以在文档的 Recipes 页面上找到答案以及其他有用的 best-practice 解决方案。另一种解决方案是将 export IHP_BROWSER=echo 附加到本地 .envrc 文件。

// .envrc
PATH_add /nix/store/...
export IHP_BROWSER=echo