You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
changed example code src/frontend.tsx for solid.js
import{render}from'solid-js/web';import{App}from'./app';constroot=document.getElementById('root');if(!root){thrownewError('Root element not found');}render(()=>(<App/>),root);
and
bun --experimental-html with "jsx": "preserve", "jsxImportSource": "solid-js", in tsconfig.json
transforms from render(() => (<App />), root)
to render(() => /* @__PURE__ */ React.createElement(App, null), root);
What version of Bun is running?
1.1.45
What platform is your computer?
No response
What steps can reproduce the bug?
changed example code src/frontend.tsx for solid.js
and
bun --experimental-html with
"jsx": "preserve", "jsxImportSource": "solid-js",
in tsconfig.jsontransforms from
render(() => (<App />), root)
to
render(() => /* @__PURE__ */ React.createElement(App, null), root);
What is the expected behavior?
expect
it seems a bug, could you help to give a look? thanks
What do you see instead?
No response
Additional information
No response
The text was updated successfully, but these errors were encountered: