Fix webpack command in tutorials (#1471)

This commit is contained in:
Andreas Sommer 2025-01-15 00:37:09 +01:00 committed by GitHub
parent ecb890429f
commit b5ff5d303d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -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!

View File

@ -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