File tree 2 files changed +2
-2
lines changed 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ export function createCompilerError<T extends number>(
30
30
const msg =
31
31
__DEV__ || ! __BROWSER__
32
32
? ( messages || errorMessages ) [ code ] + ( additionalMessage || `` )
33
- : `https://vuejs.org/errors /#compiler-${ code } `
33
+ : `https://vuejs.org/error-reference /#compiler-${ code } `
34
34
const error = new SyntaxError ( String ( msg ) ) as InferCompilerError < T >
35
35
error . code = code
36
36
error . loc = loc
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ export function handleError(
112
112
// in production the hook receives only the error code
113
113
const errorInfo = __DEV__
114
114
? ErrorTypeStrings [ type ]
115
- : `https://vuejs.org/errors /#runtime-${ type } `
115
+ : `https://vuejs.org/error-reference /#runtime-${ type } `
116
116
while ( cur ) {
117
117
const errorCapturedHooks = cur . ec
118
118
if ( errorCapturedHooks ) {
You can’t perform that action at this time.
0 commit comments