Newer
Older
CrypticOreWallet / .vscode / launch.json
@BuildTools BuildTools on 9 Jun 2021 711 bytes im gay
{
  "version": "0.2.0",
  "configurations": [
    {
      "type": "chrome",
      "request": "launch",
      "name": "Launch Chrome against localhost",
      "url": "http://localhost:3000",
      "webRoot": "${workspaceFolder}"
    },
    {
      "type": "firefox",
      "request": "launch",
      "name": "Launch Firefox against localhost",
      "url": "http://localhost:3000",
      "webRoot": "${workspaceFolder}",
      "profile": "tenebraweb",
      "keepProfileChanges": true,
      "reAttach": true
    },
    {
      "type": "firefox",
      "request": "attach",
      "name": "Attach Firefox against localhost",
      "url": "http://localhost:3000",
      "webRoot": "${workspaceFolder}"
    }
  ]
}