# Can't get Getting Set Up How To to work - Cannot find module 'webpack-cli/bin/config-yargs'

**URL:** https://forum.babylonjs.com/t/cant-get-getting-set-up-how-to-to-work-cannot-find-module-webpack-cli-bin-config-yargs/15037
**Category:** Questions
**Tags:** documentation, tutorial
**Created:** [October 19, 2020, 7:37pm UTC](https://forum.babylonjs.com/t/cant-get-getting-set-up-how-to-to-work-cannot-find-module-webpack-cli-bin-config-yargs/15037 "2020-10-19T19:37:49Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![oscar\_lindberg](https://sea2.discourse-cdn.com/flex024/user_avatar/forum.babylonjs.com/oscar_lindberg/32/11714_2.png) [@oscar\_lindberg](https://forum.babylonjs.com/u/oscar_lindberg)
#### Post date: [October 19, 2020, 7:37pm UTC](https://forum.babylonjs.com/t/cant-get-getting-set-up-how-to-to-work-cannot-find-module-webpack-cli-bin-config-yargs/15037/1 "2020-10-19T19:37:49Z")

</div>

I wanted to try to build something for the Oculus Quest, so I thought a good starting point would be “Getting Set Up” ([https://doc.babylonjs.com/how\_to/page2](https://doc.babylonjs.com/how_to/page2)). It’s a nice tutorial, and easy to follow along. Until the absolute last step:

> npm run start  
> Part of the error message is this:

Error: Cannot find module ‘webpack-cli/bin/config-yargs’  
Require stack:

- /Users/oscar/projects/multiblaster/node\_modules/webpack-dev-server/bin/webpack-dev-server.js

I’m don’t know how to start trouble shooting this. Does anyone have an idea?

---

<div class="post-metadata">

### Author: ![RaananW](https://sea2.discourse-cdn.com/flex024/user_avatar/forum.babylonjs.com/raananw/32/28955_2.png) [@RaananW](https://forum.babylonjs.com/u/RaananW)
#### Post date: [October 19, 2020, 8:01pm UTC](https://forum.babylonjs.com/t/cant-get-getting-set-up-how-to-to-work-cannot-find-module-webpack-cli-bin-config-yargs/15037/2 "2020-10-19T20:01:58Z")

</div>

Hello and welcome!

Tha’ts an interesting error, as it is rather external to babylon.js. I haven’t followed the getting started lately (and i can secretly tell you it is being rewritten and it’s AMAZING), but it seems like some webpack command is incorrect.

The `start` command should be `webpack serve` instead of `"start": "webpack-dev-server --port 8080"`. Does it work if you change it?

---

<div class="post-metadata">

### Author: ![oscar\_lindberg](https://sea2.discourse-cdn.com/flex024/user_avatar/forum.babylonjs.com/oscar_lindberg/32/11714_2.png) [@oscar\_lindberg](https://forum.babylonjs.com/u/oscar_lindberg)
#### Post date: [October 19, 2020, 8:58pm UTC](https://forum.babylonjs.com/t/cant-get-getting-set-up-how-to-to-work-cannot-find-module-webpack-cli-bin-config-yargs/15037/3 "2020-10-19T20:58:31Z")

</div>

It did work! Thank you very much for the quick help.

Now I can go on and try some stuff myself! This will be fun…
