Skip to content

Instantly share code, notes, and snippets.

@bsed
Created September 16, 2019 07:31
Show Gist options
  • Select an option

  • Save bsed/5f27cb6c8c791dfc7443f6809f49d7e2 to your computer and use it in GitHub Desktop.

Select an option

Save bsed/5f27cb6c8c791dfc7443f6809f49d7e2 to your computer and use it in GitHub Desktop.

Revisions

  1. bsed created this gist Sep 16, 2019.
    29 changes: 29 additions & 0 deletions vue_lanuch.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,29 @@
    {
    "version": "0.2.0",
    "configurations": [
    {
    "type": "chrome",
    "request": "launch",
    "name": "vuejs: chrome",
    "url": "http://localhost:8080/zhtj/",
    "webRoot": "${workspaceFolder}/src",
    "breakOnLoad": true,
    "sourceMapPathOverrides": {
    "webpack:///src/*": "${webRoot}/*"
    }
    },
    {
    "type": "firefox",
    "request": "launch",
    "name": "vuejs: firefox",
    "url": "http://localhost:8080",
    "webRoot": "${workspaceFolder}/src",
    "pathMappings": [
    {
    "url": "webpack:///src/",
    "path": "${webRoot}/"
    }
    ]
    }
    ]
    }