From 9f8ba9821fe166f77e63fa940e9e7e13ec3344fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=89=E5=92=B2=E6=99=BA=E5=AD=90=20Kevin=20Deng?= Date: Tue, 28 Nov 2023 07:38:36 +0800 Subject: [PATCH] feat(dx): link errors to docs in prod build (#9165) --- packages/compiler-core/src/errors.ts | 2 +- packages/runtime-core/src/errorHandling.ts | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/compiler-core/src/errors.ts b/packages/compiler-core/src/errors.ts index 36ab783edbe..dac779dab54 100644 --- a/packages/compiler-core/src/errors.ts +++ b/packages/compiler-core/src/errors.ts @@ -30,7 +30,7 @@ export function createCompilerError( const msg = __DEV__ || !__BROWSER__ ? (messages || errorMessages)[code] + (additionalMessage || ``) - : code + : `https://vuejs.org/errors/#compiler-${code}` const error = new SyntaxError(String(msg)) as InferCompilerError error.code = code error.loc = loc diff --git a/packages/runtime-core/src/errorHandling.ts b/packages/runtime-core/src/errorHandling.ts index afbd226c4c6..f3c03cc9e4f 100644 --- a/packages/runtime-core/src/errorHandling.ts +++ b/packages/runtime-core/src/errorHandling.ts @@ -110,7 +110,9 @@ export function handleError( // the exposed instance is the render proxy to keep it consistent with 2.x const exposedInstance = instance.proxy // in production the hook receives only the error code - const errorInfo = __DEV__ ? ErrorTypeStrings[type] : type + const errorInfo = __DEV__ + ? ErrorTypeStrings[type] + : `https://vuejs.org/errors/#runtime-${type}` while (cur) { const errorCapturedHooks = cur.ec if (errorCapturedHooks) {