config: prod and dev

This commit is contained in:
Efril
2026-07-09 23:08:50 +07:00
parent 7161f523c2
commit eb031d4c2a
5 changed files with 31 additions and 11 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Dev",
"request": "launch",
"type": "dart",
"args": ["--dart-define=ENV=dev"]
},
{
"name": "Prod",
"request": "launch",
"type": "dart",
"args": ["--dart-define=ENV=prod"]
}
]
}