diff options
Diffstat (limited to 'modern/.vscode/launch.json')
-rw-r--r-- | modern/.vscode/launch.json | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/modern/.vscode/launch.json b/modern/.vscode/launch.json index 9c243a03..8bd51ee6 100644 --- a/modern/.vscode/launch.json +++ b/modern/.vscode/launch.json @@ -1,15 +1,15 @@ { - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { + "name": "Chrome", "type": "chrome", "request": "launch", - "name": "Launch Chrome against localhost", "url": "http://localhost:3000", - "webRoot": "${workspaceFolder}" + "webRoot": "${workspaceFolder}/src", + "sourceMapPathOverrides": { + "webpack:///src/*": "${webRoot}/*" + } } ] -}
\ No newline at end of file +} |