Created
July 12, 2024 20:35
-
-
Save SametSahin10/c73c3f64e56a69d62c207d96e5d25a85 to your computer and use it in GitHub Desktop.
launch.json file of the Volt app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Debug Staging", | |
"request": "launch", | |
"type": "dart", | |
"args": [ | |
"--flavor", | |
"staging" | |
] | |
}, | |
{ | |
"name": "Debug Prod", | |
"request": "launch", | |
"type": "dart", | |
"args": [ | |
"--flavor", | |
"prod" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment