Skip to content

Commit

Permalink
Fix webpack command in tutorials (#1471)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndiDog authored Jan 14, 2025
1 parent ecb8904 commit b5ff5d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion net/grpc/gateway/examples/echo/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ into one single JS library that can be used in the browser.

```sh
$ npm install
$ npx webpack client.js
$ npx webpack ./client.js
```

Now embed `dist/main.js` into your project and see it in action!
Expand Down
2 changes: 1 addition & 1 deletion net/grpc/gateway/examples/helloworld/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ can be consumed by the browser.

```sh
$ npm install
$ npx webpack client.js
$ npx webpack ./client.js
```

Here we use `webpack` and give it an entry point `client.js`. You can also use
Expand Down

0 comments on commit b5ff5d3

Please sign in to comment.