Skip to content

Commit 1dcf7d8

Browse files
2 parents 8f604f4 + 235cb67 commit 1dcf7d8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/FAQ.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ Lorem ipsum dolor
2828
>## The Common Misconceptions
2929
>Neither the browser add-on nor the VS Code extension will host a server for: `PHP`, `.NET` or `NodeJS`. It will give you the *reloading function*, so you do not need to refresh the page every time you save.
3030
>
31-
>The reason I built this browser add-on is to delight the experience of server-side programming. The server-side is heavier than the client-side because it needs a larger server environment to run and preprocess your code in: `PHP`, `NodeJS` or `.NET`.
31+
>The reason I built this browser add-on is to delight the experience of server-side programming. The server-side is heavier than the client-side because it needs a larger server environment to run and preprocess your code in: `PHP`, `NodeJS` or `.NET`.

docs/Setup.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ In other words. If you just want the reload function when you work with `.html`
3434
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/).
3535
4. Install and run a server on your machine: [Servers and Frameworks](#servers-and-frameworks)
3636
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.
3939
6. Push the `Go Live`-button in your editor's statusbar.
4040

4141
*`.vscode/settings.json`*
@@ -48,7 +48,7 @@ In other words. If you just want the reload function when you work with `.html`
4848
// to another URL (which Live Sever starts).
4949
"liveServer.settings.proxy": {
5050
"enable": true,
51-
"baseUri": "/", // i. Workspace folder.
51+
"baseUri": "/", // i. Proxy Path.
5252
"proxyUri": "http://localhost:80/workspace" // ii. Actual Server Address.
5353
},
5454
}

0 commit comments

Comments
 (0)