chore(webpack-dev-server): update error message

This commit is contained in:
Jordan
2022-08-25 15:10:12 -04:00
parent 133d6aa1c4
commit 32221ff43a
@@ -42,7 +42,7 @@ export async function getProjectConfig (projectRoot: string): Promise<Cypress.An
defaultProject = Object.keys(angularJson.projects).find((name) => angularJson.projects[name].projectType === 'application')
if (!defaultProject) {
throw new Error('Could not find a project with projectType "application" in "angular.json"')
throw new Error('Could not find a project with projectType "application" in "angular.json". Visit https://docs.cypress.io/guides/references/configuration#Options-API to see how to pass in a custom project configuration')
}
}