Skip to content

Commit

Permalink
chore: update vs code config
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-Roshan-lab committed Aug 13, 2024
1 parent 298c666 commit a4b6ecc
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,31 @@
{
"name": "SRM_Curious_Bug",
"request": "launch",
"type": "dart"
"type": "dart",
"args": [
"--web-renderer",
"html"
]
},
{
"name": "SRM_Curious_Bug (profile mode)",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
"flutterMode": "profile",
"args": [
"--web-renderer",
"html"
]
},
{
"name": "SRM_Curious_Bug (release mode)",
"request": "launch",
"type": "dart",
"flutterMode": "release"
"flutterMode": "release",
"args": [
"--web-renderer",
"html"
]
}
]
}

0 comments on commit a4b6ecc

Please sign in to comment.