Skip to content

Instantly share code, notes, and snippets.

@cspanring
Created January 28, 2019 18:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cspanring/6f1c834f447eff4f4a91e375f6183641 to your computer and use it in GitHub Desktop.
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
{
"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