Skip to content

Commit

Permalink
Updated readme with info gathered from issues
Browse files Browse the repository at this point in the history
Specifically microsoft#201 (comment)

Also warning removed since that issue was resolved as a babel issue...
  • Loading branch information
mika76 authored May 21, 2019
1 parent 01624bf commit 2737884
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions vuejs-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ by [Kenneth Auchenberg](https://twitter.com/auchenberg)

This recipe shows how to use the [Debugger for Chrome](https://github.com/Microsoft/vscode-chrome-debug) extension with VS Code to debug Vue.js applications generated by the [Vue CLI](https://github.com/vuejs/vue-cli).

**Notice**: Please be aware that we have found issues with the sourcemaps generated by vue-cli, which are causing problems for the debugging experience in VS Code. See https://github.com/vuejs/vue-loader/issues/1163

If you're using Vue.js through the Nuxt.js framework, see https://codeburst.io/debugging-nuxt-js-with-visual-studio-code-724920140b8f

## Getting Started
Expand Down Expand Up @@ -80,7 +78,10 @@ Then click on the gear icon to configure a launch.json file, selecting **Chrome*
"webRoot": "${workspaceFolder}/src",
"breakOnLoad": true,
"sourceMapPathOverrides": {
"webpack:///./src/*": "${webRoot}/*"
"webpack:///./src/*": "${webRoot}/*",
"webpack:///src/*": "${webRoot}/*",
"webpack:///*": "*",
"webpack:///./~/*": "${webRoot}/node_modules/*"
}
}
]
Expand Down

0 comments on commit 2737884

Please sign in to comment.