Skip to content

Commit

Permalink
feat(overlay): add credentialless attribute for iframe (#614)
Browse files Browse the repository at this point in the history
  • Loading branch information
hrynevychroman committed Sep 19, 2024
1 parent a27a088 commit 53add6a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/overlay/src/composables/iframe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export function useIframe(clientUrl: string, onLoad: () => void) {
iframe.value.id = 'vue-devtools-iframe'
iframe.value.src = clientUrl
iframe.value.setAttribute('data-v-inspector-ignore', 'true')
iframe.value.setAttribute('credentialless', '')
iframe.value.onload = onLoad
return iframe.value
}
Expand Down

0 comments on commit 53add6a

Please sign in to comment.