chore: update the unsupported framework on link to point to the supported frameworks page (#30841)

This commit is contained in:
Matt Schile
2025-01-09 10:32:14 -07:00
committed by GitHub
parent 59c47d278e
commit 4cb5774618
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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
}
+1 -1
View File
@@ -119,7 +119,7 @@ async function getPreset (devServerConfig: WebpackDevServerConfig): Promise<Opti
return defaultWebpackModules()
default:
throw new Error(`Unexpected framework ${(devServerConfig as any).framework}, please visit https://on.cypress.io/component-framework-configuration to see a list of supported frameworks`)
throw new Error(`Unexpected framework ${(devServerConfig as any).framework}, please visit https://on.cypress.io/frameworks to see a list of supported frameworks`)
}
}