enhance-dev / enhance-ssr

Server side render for custom elements.
143 stars 9 forks source link

Unnamed slot before named slots render extra content in the slot #54

Closed ryanbethel closed 1 year ago

ryanbethel commented 1 year ago

If an unnamed slot is before other named slots it will render with the wrong content in the slot.

export default function myComponent({html}){
return html`<slot></slot><slot name="slot1"></slot>`
}

This PR-53 has a reproduction with a failing test.