Skip to content

Commit

Permalink
Make example work with webpack v5.69.1
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanHoyer committed Mar 1, 2022
1 parent 99d1b32 commit 69f5cbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ $ npm install webpack webpack-cli --save-dev
{
"...": "...",
"scripts": {
"start": "webpack src/index.js --output bin/app.js -d --watch"
"start": "webpack ./src/index.js --output-path ./bin --watch"
}
}
```
Expand All @@ -75,7 +75,7 @@ m.render(document.body, "hello world");
```html
<!DOCTYPE html>
<body>
<script src="bin/app.js"></script>
<script src="bin/main.js"></script>
</body>
```

Expand Down

0 comments on commit 69f5cbd

Please sign in to comment.