Closed (fixed)
Project:
Custom Elements
Version:
3.2.0
Component:
Code
Priority:
Critical
Category:
Task
Assigned:
Unassigned
Reporter:
Created:
27 Oct 2025 at 12:24 UTC
Updated:
18 Nov 2025 at 12:39 UTC
Jump to comment: Most recent
After enabling nuxt-preview provider via lupus-decoupled, the preview in manage custom-ce results in endless/instant reloads in the browser - rendering the form unusable.
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #2
fagoAfter some debugging, I figured the problem is actually on the nuxt side of things.
This commit fixed it.
However, after fixing it I found another issue with the component-preview. It does not respect the nuxtjs-drupal-ce component preview, since it's simply using h() and not renderCustomElements() helper.
Comment #3
fagoAnother issue is handling slots in previews.
Current approach for the nuxt-preview is only working well with canvas, not with regular components. Each slot gets rendered via a preview again, what is not working out in this case.
Comment #4
fago> Each slot gets rendered via a preview again, what is not working out in this case.
Actually, it's working out. It's just missing the tag-prefix, what cause issues.
Comment #6
fagoThe MR successfully addresses the remaining issues.