Is anyone using Astro in a monorepo setup? We're using Turborepo and trying to build an Astro site in a new workspace. We also maintain shared Vue components in another workspace. The problem is that when we try to import a vue component like import { ahcCredit } from 'ahc-ui-common'; (where 'ahc-ui-common' is the workspace name) and then try to use it like <ahcCredit client:load credit-text="blah"></ahcCredit> the Vue component never actually renders.
However, if I copy that component to the Astro site folder under src/components and import it like import Credit from '../components/Credit.vue'; then it renders and works just fine. Any ideas as to why this would be the case? Not being able to use this shared componentry in the monorepo kinda defeats the purpose.