brenoitalo

launch.json

Nov 27th, 2023
2,480
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.76 KB | Help | 0 0
  1. {
  2.     // Use IntelliSense to learn about possible attributes.
  3.     // Hover to view descriptions of existing attributes.
  4.     // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5.     "version": "0.2.0",
  6.     "configurations": [
  7.         {
  8.             "name": "Development",
  9.             "request": "launch",
  10.             "type": "dart",
  11.             "program": "lib/main_dev.dart",
  12.             "args": [
  13.                 "--flavor",
  14.                 "dev"
  15.             ]
  16.         },
  17.         {
  18.             "name": "Production",
  19.             "request": "launch",
  20.             "type": "dart",
  21.             "program": "lib/main.dart",
  22.             "args": [
  23.                 "--flavor",
  24.                 "prod"
  25.             ]
  26.         },
  27.     ]
  28. }
Tags: vscode launch
Advertisement
Add Comment
Please, Sign In to add comment