chore: pass flavor to vscode flutter codelens (#19919)

This commit is contained in:
shenlong 2025-07-14 18:02:29 +05:30 committed by GitHub
parent b0098d6d23
commit 33c29e4305
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

19
.vscode/launch.json vendored
View File

@ -18,6 +18,25 @@
"name": "Immich Workers",
"remoteRoot": "/usr/src/app",
"localRoot": "${workspaceFolder}/server"
},
{
"name": "Flavor - Production",
"request": "launch",
"type": "dart",
"codeLens": {
"for": [
"run-test",
"run-test-file",
"run-file",
"debug-test",
"debug-test-file",
"debug-file",
],
"title": "${debugType}",
},
"args": [
"--flavor", "production"
],
}
]
}