We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca3b16c commit ea224cbCopy full SHA for ea224cb
packages/plugin-vue-jsx/src/index.ts
@@ -15,6 +15,9 @@ export * from './types'
15
const ssrRegisterHelperId = '/__vue-jsx-ssr-register-helper'
16
const ssrRegisterHelperCode =
17
`import { useSSRContext } from "vue"\n` +
18
+ // the const here is just to work around the Bun bug where
19
+ // Function.toString() isn't working as intended
20
+ // https://github.com/oven-sh/bun/issues/9543
21
`export const ssrRegisterHelper = ${ssrRegisterHelper.toString()}`
22
23
/**
0 commit comments