[Vuejs]-Vite build runs with error while dev runs fine, and IDE did not complain (Vue3, Typescript)

0👍

const homeItem = ref<SideNavItemData>(new SideNavItemData({
    itemName: SideNavItemName.Home,
}));

Moving the item to a ref solved the problem. Still don’t know why thought.

Leave a comment