how to open 2 different files with live server in vscode

4k Views Asked by At

I have 2 different folders in my vscode workspace containing html..css files I want to open the two different html files with live server. when I open the first one it says "Server is Started at port : 5500" and it creates a new browser window and it works, when I try to open the 2nd one it says "Server is already running from different workspace." how can I solve this ? I read someone says that I can open it from a different port, how can I do that ?

1

There are 1 best solutions below

3
On

You need to change the port of one of your servers. To do this, go to your settings.json file and assign the value "liveServer.settings.port": 0 to either 0 (for a random port) or another value that is not 5500 so that the servers are running on separate ports.

See this answer for more info: Where to set value of liveServer.settings.port in live server extension of visual studio code