Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refresh "Getting started" steps #194

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,18 @@
This is a project template for [vue-cli](https://github.com/vuejs/vue-cli).

``` bash
$ npm install -g vue-cli
$ vue init webpack-simple my-project
$ cd my-project
$ npm install
$ npm run dev
npm install -g @vue/cli
npm install -g @vue/cli-init
vue init webpack-simple my-project
cd my-project
npm install
#resolve manually the issues using npm audit
npm i --save-dev webpack-cli
npm remove npm remove webpack-dev-server
npm i --save-dev npm remove webpack-dev-server
npm remove vue-loader
npm i --save-dev vue-loader@^14.2.2
npm run dev #==> **The website launches fine **
```

### What's Included
Expand Down