Open SimonSiefke opened 4 years ago
The Vue.js debugging recipe is a bit outdated. Currently the recipe handles Vue-Cli 2 and Vue-Cli 3. With Vue-Cli 4 some things are a bit different:
npm install -g vue-cli
npm i -g @vue/cli
vue init
vue create
npm run serve
npm start
I found a solution here: https://stackoverflow.com/questions/71760994/how-to-debug-a-vuejs-3-typescript-project-with-vs-code-and-chrome-using-sourcema
The Vue.js debugging recipe is a bit outdated. Currently the recipe handles Vue-Cli 2 and Vue-Cli 3. With Vue-Cli 4 some things are a bit different:
npm install -g vue-cli
should now benpm i -g @vue/cli
vue init
is has been renamed tovue create
with Vue-Cli 4npm run serve
instead ofnpm start
with Vue-Cli 4