From 4cb5774618ffdaa55b5cc1f56dc572170082c6c4 Mon Sep 17 00:00:00 2001 From: Matt Schile Date: Thu, 9 Jan 2025 10:32:14 -0700 Subject: [PATCH] chore: update the unsupported framework on link to point to the supported frameworks page (#30841) --- npm/angular/src/mount.ts | 2 +- npm/webpack-dev-server/src/devServer.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/npm/angular/src/mount.ts b/npm/angular/src/mount.ts index 0774d02ecc51..982c3200adee 100644 --- a/npm/angular/src/mount.ts +++ b/npm/angular/src/mount.ts @@ -86,7 +86,7 @@ function cleanup () { } catch (e) { const notSupportedError = new Error(`Failed to teardown component. The version of Angular you are using may not be officially supported.`) - ;(notSupportedError as any).docsUrl = 'https://on.cypress.io/component-framework-configuration' + ;(notSupportedError as any).docsUrl = 'https://on.cypress.io/frameworks' throw notSupportedError } diff --git a/npm/webpack-dev-server/src/devServer.ts b/npm/webpack-dev-server/src/devServer.ts index 42502c4bf57b..b220b8ccb9a6 100644 --- a/npm/webpack-dev-server/src/devServer.ts +++ b/npm/webpack-dev-server/src/devServer.ts @@ -119,7 +119,7 @@ async function getPreset (devServerConfig: WebpackDevServerConfig): Promise