How to change default browser with VS Code's “open with live server”?
它默认为我的野生动物园,但想将其更改为Chrome。 我查看了首选项,但似乎没有选择。 有任何想法吗?
转到文件>首选项>设置
从默认用户设置中选择
在其内部,单击
要么
例如
1 2 | "editor.formatOnSave": true, "liveServer.settings.CustomBrowser":"chrome" |
这就是我在MacOS上所做的操作(您必须先做好准备,然后选择"配置扩展名设置")
您可以通过2个步骤进行操作:-
1)在
2)在终端运行
这将在chrome中打开应用程序。
在Mac上,通过VS Code菜单:
代码>首选项>设置>在顶部的"搜索设置"框中键入
如何在" liveServer"中自定义非传统浏览器?
或按
在JSON文件上写
-
此设置将覆盖
"CustomBrowser" 和"ChromeDebuggingAttachment" 设置。 - 默认值为空
-
例子:
- chrome --incognito --headless --remote-debugging-port = 9222
- C:\ Program Files \ Firefox开发人员版\ firefox.exe --private-window
查看我的照片,或在GitHub上查看此链接以获取更多详细信息。
Note: Either use
"AdvanceCustomBrowserCmdLine" or"CustomBrowser" . If
you use both,"AdvanceCustomBrowserCmdLine" has higher priority.
如果使用npm软件包在全局范围内安装了实时服务器,则可以通过在启动命令中传递浏览器选项,轻松地在所选浏览器上启动实时服务器:
在终端上输入:
例如:
live-server --browser=safari
一些Macbook接受
Google Chrome的
注意:对于Mac
如果使用实时服务器扩展https://github.com/ritwickdey/vscode-live-server,则具有以下设置:
liveServer.settings.CustomBrowser:
To change your system's default
browser. Default value is"Null" [String, not null]. (It will open
your system's default browser.) Available Options : chrome
chrome:PrivateMode firefox firefox:PrivateMode microsoft-edge