[Nuxt] Failed to execute put on cache 이슈
포스트
취소

[Nuxt] Failed to execute put on cache 이슈

개요

Nuxt로 개발을 하던 도중, 어느 순간부터 개발자 도구를 열면 다음과 같이 service-worker.js라는 곳에서 에러를 쭉쭉 뱉고 있었습니다.
찾아본 결과, 다음과 같은 방법으로 해결할 수 있었습니다.
Failed to execute put on cache

해결 방법

1
2
3
4
navigator.serviceWorker.getRegistrations().then(function(registrations) {
 for(let registration of registrations) {
  registration.unregister()
} });

Chrome에서 개발자도구 -> console 탭을 열고, 위 소스코드를 입력해서 실행시키면 해당 이슈가 발생하지 않습니다!

이 기사는 저작권자의 CC BY 4.0 라이센스를 따릅니다.

[React Native] Webview SSL Error: The Certificate authority is not trusted

좋은 개발자가 되는 법