Update default launch examples

This commit is contained in:
Kenneth Auchenberg 2016-09-15 10:43:25 -07:00 коммит произвёл GitHub
Родитель 698ccd3d5b
Коммит d7bdfd909b
1 изменённых файлов: 6 добавлений и 5 удалений

Просмотреть файл

@ -56,17 +56,17 @@
"runtime": "node",
"initialConfigurations": [
{
"name": "Navigate to current project on an iOS device",
"name": "iOS - launch localhost",
"type": "ios",
"request": "launch",
"port": 9222,
"url": "index.html",
"url": "http://localhost:8080",
"webRoot": "${workspaceRoot}",
"deviceName": "*",
"tunnelPort": 8080
},
{
"name": "Navigate to url on an iOS device",
"name": "iOS - launch mysite.com",
"type": "ios",
"request": "launch",
"port": 9222,
@ -75,10 +75,11 @@
"deviceName": "*"
},
{
"name": "Attach to an iOS device",
"name": "iOS - attach to dev.domain.com",
"type": "ios",
"request": "attach",
"port": 9222,
"url": "http://dev.domain.com/",
"webRoot": "${workspaceRoot}",
"deviceName": "*"
}