From 69f5cbdf641ef09b0813ffde090c61c2ed765d07 Mon Sep 17 00:00:00 2001 From: Stephan Hoyer Date: Tue, 1 Mar 2022 07:45:10 +0100 Subject: [PATCH] Make example work with webpack v5.69.1 --- docs/installation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/installation.md b/docs/installation.md index 05cd5eb2..07ac4db8 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -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" } } ``` @@ -75,7 +75,7 @@ m.render(document.body, "hello world"); ```html - + ```