Skip to content

Commit b5ff5d3

Browse files
authored
Fix webpack command in tutorials (#1471)
1 parent ecb8904 commit b5ff5d3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

net/grpc/gateway/examples/echo/tutorial.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ into one single JS library that can be used in the browser.
191191

192192
```sh
193193
$ npm install
194-
$ npx webpack client.js
194+
$ npx webpack ./client.js
195195
```
196196

197197
Now embed `dist/main.js` into your project and see it in action!

net/grpc/gateway/examples/helloworld/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ can be consumed by the browser.
284284

285285
```sh
286286
$ npm install
287-
$ npx webpack client.js
287+
$ npx webpack ./client.js
288288
```
289289

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

0 commit comments

Comments
 (0)