We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a10e741 commit 27d70b5Copy full SHA for 27d70b5
packages/vite/src/client/client.ts
@@ -308,7 +308,11 @@ const hasDocument = 'document' in globalThis
308
309
function createErrorOverlay(err: ErrorPayload['err']) {
310
clearErrorOverlay()
311
- document.body.appendChild(new ErrorOverlay(err))
+ const { customElements } = globalThis
312
+ if (customElements) {
313
+ const ErrorOverlayConstructor = customElements.get(overlayId)!
314
+ document.body.appendChild(new ErrorOverlayConstructor(err))
315
+ }
316
}
317
318
function clearErrorOverlay() {
0 commit comments