@nuxt/content: 1.4.1
nuxt: 2.13.2
devDependancies
@nuxtjs/vuetify:
I expected that the component, like my custom component works in production.
In dev mode, vuetify components are transform to html but in production mode, vuetify components are not transform.
md file

production

development

You have to explicitly import your vuetify components into your component.
the vuetify Loader trys to get the component while compiling but doesn't check the .md files.
Your Options:
ok, nice to know it ! In fact, I doesn't think about theeshaking, which is enable by default in production (docs of @nuxt/vuetify)

After importing components, it works, thanks.
import { VRow, VCol } from 'vuetify/lib/components/VGrid'
export default {
components: {
VRow,
VCol,
},
Most helpful comment
You have to explicitly import your vuetify components into your component.
the vuetify Loader trys to get the component while compiling but doesn't check the .md files.
Your Options: