Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.

Commit 92b435d

Browse files
authored
Fix Image URLs on Read me file
Fix Image URLs on Read me file. It seems to be broken
1 parent 5c143f8 commit 92b435d

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

src/Web/WebSPA/README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,29 +7,30 @@ The SPA application is using a newer version of NPM than the one provided by Vis
77

88
NPM is bundled with NODE.JS. Installing NPM and NODE is pretty straightforward by using the installer package available at https://nodejs.org/en/
99

10-
<img src="../../../../img/spa/installing_npm_node.png">
10+
<img src="../../../img/spa/installing_npm_node.png">
11+
1112
You can install the version "Recommended For Most Users" of Node which at the moment of this writing was v6.9.3 LTS and comes with a newer version of NPM.
1213
You can see your initial NPM version and the installed NPM version with the command
1314
<b>npm -v</b>, as shown below.
1415
<p>
15-
<img src="../../../../img/spa/npm-versions-powershell.png">
16+
<img src="../../../img/spa/npm-versions-powershell.png">
1617

1718
### Set NPM path into Visual Studio
1819
NPM will be usually installed under this path:
1920
<b>C:\Program Files (x86)\nodejs</b>.
2021
You need to update that path in Visual Studio 2015 under the "External Web Tools" location paths, as shown below:
2122
<p>
22-
<img src="../../../../img/spa/vs-tools-path-custom-node.png">
23+
<img src="../../../img/spa/vs-tools-path-custom-node.png">
2324

2425
### Build the SPA app with NPM
2526
Finally, you need to build the SPA app (TypeScript and Angular based client app) with NPM.
2627
* Open a command-prompt window and move to the root of the SPA application (src\Web\WebSPA\eShopOnContainers.WebSPA)
2728
* Run the command <b>npm run build:prod</b> as shown below:
2829
<p>
29-
<img src="../../../../img/spa/npm-run-build.png">
30+
<img src="../../../img/spa/npm-run-build.png">
3031

3132
If you get an error like <b>"Node Sass could not find a binding for your current environment: Windows 64-bit with Node.js 6.x"</b>, then run the command <b>npm rebuild node-sass</b> as in the following screenshot:
32-
<img src="../../../../img/spa/npm-rebuild-node-sass.png">
33+
<img src="../../../img/spa/npm-rebuild-node-sass.png">
3334
Then, run again the <b>npm run build:prod</b> command that should finish with no errors.
3435

3536
### Build/create the Docker images
@@ -41,6 +42,6 @@ Deploy/run the Docker containers with <b>"docker-compose up"</b> as explained in
4142
### Test the SPA web application
4243

4344
Test the SPA app by running the following URL in a browser:
44-
<b> http://TBD</b>
45+
<b> http://localhost:5104</b>
4546

4647

0 commit comments

Comments
 (0)