front-end
								[pwa] 유용한 기능
		
								PWA에서 유용하게 사용할 수 있는 여러가지 기능의 사용법을 모아둔 것이다.설치 버튼 추가웹 앱 매니페스트 파일을 만든다. (manifest.json){  "short_name": "Demo App",  "name": "Demo App",  "icons": [    {      "src": "logo.png",      "type": "image/png",      "sizes": "192x192"    }  ],  "start_url": ".",  "display": "standalone",  "orientation": "portrait-primary",  "theme_color": "#000000",  "background_color": "#ffffff",  "description": "Demo Ap..
								2024. 4. 30. 16:42