사파리 Clipboard API NotAllowedError
문제상황특정 브라우저(Safari)에서만 Clipboard API 사용시 NotAllowedError가 발생하는 이슈가 있었다.문제의 코드 async function handleShare(text){ // 로깅용 fetch fetch(...) // 클립보드 복사 await navigator.clipboard.writeText(text); // ❌ : NotAllowedError!}Safari에서만 NotAllowedError가 발생한 이유The Clipboard API allows users to programmatically read and write text and other kinds of data to and from the system clipboard in secur..