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
When building a project using Vue 3, Vuetify Renderers 3.1.0-preview and Vite, the custom renderers do not render anything.
When run under Vite dev server, they do render.
My suspicion is this is related to how the renderers are passed as reactive objects, which is somehow being dropped or otherwise affected by the rollup stage of vite build.
run npm run build && npx serve dist - the custom renderer will not render
In debugging this, I could not cause any side-effects, such as console logs, from within the custom renderer component's setup function - when running from a vite build.
The text was updated successfully, but these errors were encountered:
When building a project using Vue 3, Vuetify Renderers 3.1.0-preview and Vite, the custom renderers do not render anything.
When run under Vite dev server, they do render.
My suspicion is this is related to how the renderers are passed as reactive objects, which is somehow being dropped or otherwise affected by the rollup stage of
vite build
.Example repository: https://github.com/yaffol/json-forms-vuetify-vite-seed
Reproduction:
npm run dev
- the custom renderer will rendernpm run build && npx serve dist
- the custom renderer will not renderIn debugging this, I could not cause any side-effects, such as console logs, from within the custom renderer component's setup function - when running from a
vite build
.The text was updated successfully, but these errors were encountered: