From 4b03b922e25d23b8233805c587b897d5d8523531 Mon Sep 17 00:00:00 2001 From: Evan You Date: Fri, 3 Apr 2020 09:21:21 -0400 Subject: [PATCH] chore: remove debugger --- packages/runtime-core/src/profiling.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/runtime-core/src/profiling.ts b/packages/runtime-core/src/profiling.ts index d841cd84..f90ad64c 100644 --- a/packages/runtime-core/src/profiling.ts +++ b/packages/runtime-core/src/profiling.ts @@ -7,7 +7,6 @@ export function startMeasure( instance: ComponentInternalInstance, type: string ) { - if (!instance.appContext) debugger if (instance.appContext.config.performance && isSupported()) { perf.mark(`vue-${type}-${instance.uid}`) }