From 33c29e4305ad1ccc99aee664a1535f6db1aa3e54 Mon Sep 17 00:00:00 2001 From: shenlong <139912620+shenlong-tanwen@users.noreply.github.com> Date: Mon, 14 Jul 2025 18:02:29 +0530 Subject: [PATCH] chore: pass flavor to vscode flutter codelens (#19919) --- .vscode/launch.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index ed3da9f667..8682376cda 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -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" + ], } ] }