Created
January 28, 2019 18:32
-
-
Save cspanring/6f1c834f447eff4f4a91e375f6183641 to your computer and use it in GitHub Desktop.
VS Code launch configuration to enable debugging Ember apps with Firefox. Requires Debugger for Firefox https://marketplace.visualstudio.com/items?itemName=hbenl.vscode-firefox-debug
This file contains hidden or 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
{ | |
"version": "0.2.0", | |
"configurations": [{ | |
"name": "Launch Firefox", | |
"type": "firefox", | |
"request": "launch", | |
"reAttach": true, | |
"url": "http://localhost:4200", | |
"pathMappings": [{ | |
"url": "http://localhost:4200/assets/YOUR-EMBER-APP-NAME", | |
"path": "${workspaceFolder}/app" | |
}] | |
}] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment