사이트가 PWA를 가능하게 하려면PWA가 가능하려면 사이트에 두 가지 파일이 필요합니다.1. manifest.json2. service-worker.jsmanifest 연결 그리고 HTML에 manifest를 연결해야 합니다.1. manifest.json 예static/manifest.json{ "name": "시마당", "short_name": "시마당", "start_url": "/poem/", "display": "standalone", "background_color": "#ffffff", "theme_color": "#0d6efd", "icons": [ { "src": "/static/icons/icon-192.png", "sizes": "192x192", ..