We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5050153 commit 9195667Copy full SHA for 9195667
packages/components/configs/stencil/index.cjs
@@ -5,15 +5,8 @@ const onClickPlugin = require('../plugins/on-click.cjs');
5
*/
6
module.exports = {
7
typescript: true,
8
- attributePassing: (component) => {
9
- // Disable attribute passing for breadcrumb to prevent Host wrapper generation
10
- if (component?.path?.includes('/breadcrumb/breadcrumb')) {
11
- return { enabled: false };
12
- }
13
- return {
14
- enabled: true,
15
- customRef: '_ref'
16
- };
+ attributePassing: {
+ enabled: false
17
},
18
plugins: [onClickPlugin]
19
};
0 commit comments