From 11cc12b915edfe0e4d3175e57464f73bc2c1cb04 Mon Sep 17 00:00:00 2001 From: Evan You Date: Fri, 14 Jun 2024 16:13:18 +0200 Subject: [PATCH] fix(build): fix accidental inclusion of runtime-core in server-renderer cjs build close #11137 --- .../server-renderer/src/helpers/ssrGetDirectiveProps.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/packages/server-renderer/src/helpers/ssrGetDirectiveProps.ts b/packages/server-renderer/src/helpers/ssrGetDirectiveProps.ts index 877c01d36..c3cb428ab 100644 --- a/packages/server-renderer/src/helpers/ssrGetDirectiveProps.ts +++ b/packages/server-renderer/src/helpers/ssrGetDirectiveProps.ts @@ -1,8 +1,4 @@ -import { - type ComponentPublicInstance, - type Directive, - ssrUtils, -} from '@vue/runtime-core' +import { type ComponentPublicInstance, type Directive, ssrUtils } from 'vue' export function ssrGetDirectiveProps( instance: ComponentPublicInstance,