From 3d481b803af261fb86d4143de095aa35b0b26934 Mon Sep 17 00:00:00 2001 From: Dele O Date: Wed, 14 Mar 2018 23:51:06 -0400 Subject: [PATCH] Includes install webpack-cli This is now needed before running the `npx webpack` command. --- src/content/guides/getting-started.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/content/guides/getting-started.md b/src/content/guides/getting-started.md index 33e74ba9c33b..9554887fbc5c 100644 --- a/src/content/guides/getting-started.md +++ b/src/content/guides/getting-started.md @@ -202,6 +202,11 @@ module.exports = { } }; ``` +If you haven't already, install the new webpack-cli: + +```bash + npm install --save webpack-cli +``` Now, let's run the build again but instead using our new configuration: