Skip to content

Commit 53add6a

Browse files
authoredSep 19, 2024··
feat(overlay): add credentialless attribute for iframe (#614)
1 parent a27a088 commit 53add6a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎packages/overlay/src/composables/iframe.ts

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ export function useIframe(clientUrl: string, onLoad: () => void) {
99
iframe.value.id = 'vue-devtools-iframe'
1010
iframe.value.src = clientUrl
1111
iframe.value.setAttribute('data-v-inspector-ignore', 'true')
12+
iframe.value.setAttribute('credentialless', '')
1213
iframe.value.onload = onLoad
1314
return iframe.value
1415
}

0 commit comments

Comments
 (0)
Please sign in to comment.