mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-09 14:47:23 +00:00
64 lines
1.1 KiB
JSON
64 lines
1.1 KiB
JSON
{
|
|
"configurations": [
|
|
|
|
{
|
|
|
|
"name": "DEVELOPMENT",
|
|
|
|
"request": "launch",
|
|
|
|
"type": "dart",
|
|
|
|
"args": [
|
|
"-d",
|
|
"chrome",
|
|
"--web-port",
|
|
"3000",
|
|
"-t",
|
|
"lib/main_dev.dart",
|
|
],
|
|
|
|
"flutterMode": "debug"
|
|
|
|
},{
|
|
|
|
"name": "STAGING",
|
|
|
|
"request": "launch",
|
|
|
|
"type": "dart",
|
|
|
|
"args": [
|
|
"-d",
|
|
"chrome",
|
|
"--web-port",
|
|
"3000",
|
|
"-t",
|
|
"lib/main_staging.dart",
|
|
],
|
|
|
|
"flutterMode": "debug"
|
|
|
|
},{
|
|
|
|
"name": "PRODUCTION",
|
|
|
|
"request": "launch",
|
|
|
|
"type": "dart",
|
|
|
|
"args": [
|
|
"-d",
|
|
"chrome",
|
|
"--web-port",
|
|
"3000",
|
|
"-t",
|
|
"lib/main.dart",
|
|
],
|
|
|
|
"flutterMode": "debug"
|
|
|
|
},
|
|
|
|
]
|
|
} |