다음의 오류가 발생하였는데요, 해결하는 방법은 HTML 편집하기로 이동한 다음, 해당 값을 변경하는 것이랍니다.
<meta name="apple-mobile-web-app-capable" content="yes"> is deprecated. Please include <meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">는 iOS에서 웹사이트를 홈 화면에 추가할 때 네이티브 앱처럼 동작하도록 하는 메타 태그였지만, 이제 더 이상 권장되지 않기 때문이에요. 대신, 플랫폼에 구애받지 않는 <meta name="mobile-web-app-capable" content="yes">를 사용하는 것으로 해결할 수 있습니다.
아래와 같이 변경하면 됩니다.
<meta name="mobile-web-app-capable" content="yes">
이렇게 하면 iOS뿐만 아니라 다양한 플랫폼에서 웹 앱이 모바일에 최적화된 형태로 잘 동작해요. 다만, 특정 플랫폼에 맞춘 설정이나 태그는 추가로 필요할 수 있으니 목표로 하는 디바이스에 따라 구체적인 설정을 고려해 보세요.
