aboutsummaryrefslogtreecommitdiff
path: root/.vscode/launch.json
blob: e9718ce34ffb0faaa9b35aec454f8d98c6e2408d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "chrome",
            "request": "launch",
            "name": "Google Chrome",
            "url": "http://localhost:3000",
            "webRoot": "${workspaceRoot}",
            "sourceMapPathOverrides": {
                "webpack:///*": "${webRoot}/*"
            }
        }
    ],
}