Add localhost configurations
This commit is contained in:
parent
4c577a51a3
commit
d8851bf2f3
1 changed files with 25 additions and 1 deletions
26
.vscode/launch.json
vendored
26
.vscode/launch.json
vendored
|
@ -15,12 +15,36 @@
|
|||
"independent"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Android Local",
|
||||
"request": "launch",
|
||||
"type": "dart",
|
||||
"flutterMode": "debug",
|
||||
"program": "lib/main.dart",
|
||||
"args": [
|
||||
"--flavor",
|
||||
"independent",
|
||||
"--dart-define",
|
||||
"endpoint=http://localhost:8080",
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iOS Prod",
|
||||
"request": "launch",
|
||||
"type": "dart",
|
||||
"flutterMode": "debug",
|
||||
"program": "lib/main.dart"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "iOS Local",
|
||||
"request": "launch",
|
||||
"type": "dart",
|
||||
"flutterMode": "debug",
|
||||
"program": "lib/main.dart",
|
||||
"args": [
|
||||
"--dart-define",
|
||||
"endpoint=http://localhost:8080",
|
||||
]
|
||||
},
|
||||
]
|
||||
}
|
Loading…
Add table
Reference in a new issue