Created
January 24, 2019 01:36
-
-
Save TheDutchCoder/a900b6cf4bc7770d320604125b48161f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// 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": [ | |
{ | |
"type": "chrome", | |
"request": "launch", | |
"name": "Launch Chrome against localhost", | |
"url": "https://local.canvaspop.com/products/canvas-prints", // URL to launch the browser with, could be localhost for you. | |
"webRoot": "${workspaceFolder}", | |
"sourceMaps": true, | |
"trace": true, | |
"sourceMapPathOverrides": { | |
"webpack:///./*": "${webRoot}/*" // This makes sure webpack's sourcemaps (in dev mode) are found by the debugger. | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment