Skip to content

Commit 185f5a3

Browse files
committed
chore: ignore nuxt internal components
1 parent ce12e78 commit 185f5a3

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

src/module.ts

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,18 @@ export default defineNuxtModule<ModuleOptions>({
3131
components: [],
3232
metaSources: [],
3333
silent: true,
34-
exclude: ['nuxt/dist/app/components/client-only', 'nuxt/dist/app/components/dev-only', '@nuxtjs/mdc/dist/runtime/components/MDC'],
34+
exclude: [
35+
'nuxt/dist/app/components/welcome',
36+
'nuxt/dist/app/components/client-only',
37+
'nuxt/dist/app/components/dev-only',
38+
'@nuxtjs/mdc/dist/runtime/components/MDC',
39+
'nuxt/dist/app/components/nuxt-layout',
40+
'nuxt/dist/app/components/nuxt-error-boundary',
41+
'nuxt/dist/app/components/server-placeholder',
42+
'nuxt/dist/app/components/nuxt-loading-indicator',
43+
'nuxt/dist/app/components/nuxt-route-announcer',
44+
'nuxt/dist/app/components/nuxt-stubs',
45+
],
3546
metaFields: {
3647
type: true,
3748
props: true,

0 commit comments

Comments
 (0)