From d9aefd6da5bd6ea244da3a8d5ea3dcbbadd31f99 Mon Sep 17 00:00:00 2001 From: Alan Agius Date: Tue, 25 Apr 2023 09:55:20 +0000 Subject: [PATCH] fix(@schematics/angular): replace vscode launch type from `pwa-chrome` to `chrome` The former is deprecated. (cherry picked from commit f50dc01a53209d1f0de07bbfcbe294de21360494) --- .../angular/workspace/files/__dot__vscode/launch.json.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/schematics/angular/workspace/files/__dot__vscode/launch.json.template b/packages/schematics/angular/workspace/files/__dot__vscode/launch.json.template index c87d18d99675..ca1ead818cc1 100644 --- a/packages/schematics/angular/workspace/files/__dot__vscode/launch.json.template +++ b/packages/schematics/angular/workspace/files/__dot__vscode/launch.json.template @@ -4,7 +4,7 @@ "configurations": [ { "name": "ng serve", - "type": "pwa-chrome", + "type": "chrome", "request": "launch", "preLaunchTask": "npm: start", "url": "http://localhost:4200/"