From 501d21c57d20afa95213ab05a48d8f3d9f0dde91 Mon Sep 17 00:00:00 2001 From: Matthew Schile Date: Wed, 8 Jan 2025 11:15:38 -0700 Subject: [PATCH] chore: update the unsupported framework on link to point to the supported frameworks page --- 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