From cb1ab5363d7a03893cbeab5a499fb61a8295805d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Litzler?= Date: Wed, 22 Apr 2020 13:30:09 +0200 Subject: [PATCH] Refresh "Getting started" steps --- README.md | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index b6d00c144..9ac905386 100644 --- a/README.md +++ b/README.md @@ -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