diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2020-03-18 23:03:31 -0700 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2020-03-18 23:03:31 -0700 |
commit | 3d05383151ad7ce44c6297fc46bf5bf8457db7c6 (patch) | |
tree | ce31dbe9264748ebd71fc436ade314e4622a046d /modern/.vscode/launch.json | |
parent | 13fb1b0ec962b3262acd4d71ea6b382ce23cafaa (diff) | |
download | trackermap-web-3d05383151ad7ce44c6297fc46bf5bf8457db7c6.tar.gz trackermap-web-3d05383151ad7ce44c6297fc46bf5bf8457db7c6.tar.bz2 trackermap-web-3d05383151ad7ce44c6297fc46bf5bf8457db7c6.zip |
Replace map with OpenLayers
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 +} |