Skip to content

Commit 9c2b620

Browse files
authoredNov 11, 2024··
fix(plugin-jsx): work around bun bug for ssrRegisterHelper (#380)
close #376
1 parent 62b17f3 commit 9c2b620

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎packages/plugin-vue-jsx/src/index.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ export * from './types'
1313
const ssrRegisterHelperId = '/__vue-jsx-ssr-register-helper'
1414
const ssrRegisterHelperCode =
1515
`import { useSSRContext } from "vue"\n` +
16-
`export ${ssrRegisterHelper.toString()}`
16+
// the const here is just to work around the Bun bug where
17+
// Function.toString() isn't working as intended
18+
// https://github.com/oven-sh/bun/issues/9543
19+
`export const ssrRegisterHelper = ${ssrRegisterHelper.toString()}`
1720

1821
/**
1922
* This function is serialized with toString() and evaluated as a virtual

0 commit comments

Comments
 (0)
Please sign in to comment.