Skip to content

Commit 23ef44b

Browse files
committed
feat: Exclude drupal-* prefixed components by default
1 parent 917f280 commit 23ef44b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![License][license-src]][license-href]
77
[![Nuxt][nuxt-src]][nuxt-href]
88

9-
> A Nuxt module by [drunomics](https://drunomics.com/en) for previewing Vue components in external contexts (like iframes or separate HTML pages). Originally developed for use with decoupled Drupal environments, but can be used with any backend.
9+
> A Nuxt module by [drunomics](https://drunomics.com/en) for previewing Vue components in external contexts (like iframes or separate HTML pages). Originally developed for use with decoupled Drupal environments like [Lupus Decoupled Drupal](https://lupus-decoupled.org), but can be used with any backend.
1010
1111
## Features
1212

src/module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export default defineNuxtModule<ModuleOptions>({
3232
status: 'stable',
3333
includePackages: false, // By default, exclude all packages from node_modules
3434
exclude: {
35-
components: ['*--default'],
35+
components: ['*--default', 'drupal-*'],
3636
directories: [], // Path patterns only
3737
},
3838
overrides: {},

0 commit comments

Comments
 (0)