I'm trying to use Nuxt MDC without Nuxt Content (the goal is to reduce the build size, and I don’t need the other features of Nuxt Content since my content comes from a headless CMS, not markdown files).
So far, it's working as expected.
But now, when I try to override the default prose components with my custom ones, it doesn’t work — the default ones are still being loaded.
I think the problem comes from the auto-import system. When I follow the Nuxt MDC documentation, it overrides the global auto-import of my base components to load only the prose ones.
I could fix it by manually importing the non-prose components, but that’s not ideal.