Files
moonwell-launcher/.vscode/launch.json
T

35 lines
1.1 KiB
JSON

{
// 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": "moonwell_launcher",
"request": "launch",
"type": "dart",
"toolArgs": [
"--dart-define=MOONWELL_API_BASE_URL=https://moon-well.online"
]
},
{
"name": "moonwell_launcher (profile mode)",
"request": "launch",
"type": "dart",
"flutterMode": "profile",
"toolArgs": [
"--dart-define=MOONWELL_API_BASE_URL=https://moon-well.online"
]
},
{
"name": "moonwell_launcher (release mode)",
"request": "launch",
"type": "dart",
"flutterMode": "release",
"toolArgs": [
"--dart-define=MOONWELL_API_BASE_URL=https://moon-well.online"
]
}
]
}