Skip to content

Commit

Permalink
docs: fix-build-path-in-http-server-command (angular#53226)
Browse files Browse the repository at this point in the history
PR Close angular#53226
  • Loading branch information
ilijaleko authored and dylhunn committed Jan 16, 2024
1 parent 760b1f3 commit e9c659a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ Make a change to the application, and watch the service worker install the updat
<docs-code language="shell">

ng build
npx http-server -p 8080 -c-1 dist/
npx http-server -p 8080 -c-1 dist/&lt;project-name&gt;/browser

</docs-code>

Expand Down
4 changes: 2 additions & 2 deletions aio/content/guide/service-worker-getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ You can run it without installing it like this:

<code-example format="shell" language="shell">

npx http-server -p 8080 -c-1 dist/
npx http-server -p 8080 -c-1 dist/&lt;project-name&gt;/browser

</code-example>

Expand Down Expand Up @@ -174,7 +174,7 @@ Make a change to the application, and watch the service worker install the updat
<code-example format="shell" language="shell">

ng build
npx http-server -p 8080 -c-1 dist/
npx http-server -p 8080 -c-1 dist/&lt;project-name&gt;/browser

</code-example>

Expand Down

0 comments on commit e9c659a

Please sign in to comment.