Skip to content

Commit 27d70b5

Browse files
authored
fix(client): overlay not appearing when multiple vite clients were loaded (#18647)
1 parent a10e741 commit 27d70b5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/vite/src/client/client.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,11 @@ const hasDocument = 'document' in globalThis
308308

309309
function createErrorOverlay(err: ErrorPayload['err']) {
310310
clearErrorOverlay()
311-
document.body.appendChild(new ErrorOverlay(err))
311+
const { customElements } = globalThis
312+
if (customElements) {
313+
const ErrorOverlayConstructor = customElements.get(overlayId)!
314+
document.body.appendChild(new ErrorOverlayConstructor(err))
315+
}
312316
}
313317

314318
function clearErrorOverlay() {

0 commit comments

Comments
 (0)