mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-08-24 20:22:27 +00:00
49 lines
917 B
JSON
49 lines
917 B
JSON
{
|
|
"configurations": [
|
|
{
|
|
"name": "DEVELOPMENT",
|
|
"request": "launch",
|
|
"type": "dart",
|
|
"args": [
|
|
"-d",
|
|
"chrome",
|
|
"--web-port",
|
|
"3000",
|
|
"-t",
|
|
"lib/main_dev.dart",
|
|
"--web-experimental-hot-reload"
|
|
],
|
|
"flutterMode": "debug"
|
|
},
|
|
{
|
|
"name": "STAGING",
|
|
"request": "launch",
|
|
"type": "dart",
|
|
"args": [
|
|
"-d",
|
|
"chrome",
|
|
"--web-port",
|
|
"3000",
|
|
"-t",
|
|
"lib/main_staging.dart",
|
|
"--web-experimental-hot-reload"
|
|
],
|
|
"flutterMode": "debug"
|
|
},
|
|
{
|
|
"name": "PRODUCTION",
|
|
"request": "launch",
|
|
"type": "dart",
|
|
"args": [
|
|
"-d",
|
|
"chrome",
|
|
"--web-port",
|
|
"3000",
|
|
"-t",
|
|
"lib/main.dart",
|
|
"--web-experimental-hot-reload"
|
|
],
|
|
"flutterMode": "debug"
|
|
}
|
|
]
|
|
} |