mobileapplicationPassvault/.vscode/launch.json

29 lines
820 B
JSON
Raw Permalink Normal View History

2024-04-12 05:23:32 +00:00
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "flutter_passvault",
"request": "launch",
"type": "dart",
"args": [
"--web-port",
"8080",
]
},
{
"name": "flutter_passvault (profile mode)",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
},
{
"name": "flutter_passvault (release mode)",
"request": "launch",
"type": "dart",
"flutterMode": "release"
}
]
}