You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/Setup.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,8 +34,8 @@ In other words. If you just want the reload function when you work with `.html`
34
34
3. Install the browser add-on; [Chrome](https://chrome.google.com/webstore/detail/live-server-web-extension/fiegdmejfepffgpnejdinekhfieaogmj/) or [Firefox](https://addons.mozilla.org/en-US/firefox/addon/live-server-web-extension/).
35
35
4. Install and run a server on your machine: [Servers and Frameworks](#servers-and-frameworks)
36
36
5. Enter the neccesary values (code block below)
37
-
1.**Proxy Address:** is the folder you want proxy from. The path is relative to the workspace.
38
-
2. **Live Server Address:** is the address where your VS code extension is running.
37
+
1.**Proxy Path:** is the path to the folder you want proxy from. The path is relative to the workspace.
38
+
2. **Actual Server Address:** is the address where your server is located and the port.
39
39
6. Push the `Go Live`-button in your editor's statusbar.
40
40
41
41
*`.vscode/settings.json`*
@@ -48,7 +48,7 @@ In other words. If you just want the reload function when you work with `.html`
48
48
// to another URL (which Live Sever starts).
49
49
"liveServer.settings.proxy": {
50
50
"enable":true,
51
-
"baseUri":"/", // i. Workspace folder.
51
+
"baseUri":"/", // i. Proxy Path.
52
52
"proxyUri":"http://localhost:80/workspace"// ii. Actual Server Address.
0 commit comments