haepada commited on
Commit
8638d47
·
verified ·
1 Parent(s): bbfc0aa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -1
app.py CHANGED
@@ -1862,5 +1862,16 @@ if __name__ == "__main__":
1862
  show_error=True,
1863
  height=None,
1864
  width="100%",
1865
- favicon_path="static/icons/icon-72x72.png"
 
 
 
 
 
 
 
 
 
 
 
1866
  )
 
1862
  show_error=True,
1863
  height=None,
1864
  width="100%",
1865
+ favicon_path="static/icons/icon-72x72.png",
1866
+ # iOS PWA 설정을 위한 헤더 추가
1867
+ head="""
1868
+ <meta name="apple-mobile-web-app-capable" content="yes">
1869
+ <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
1870
+ <meta name="apple-mobile-web-app-title" content="디지털굿">
1871
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover">
1872
+ <link rel="apple-touch-icon" href="static/icons/icon-192x192.png">
1873
+ <link rel="apple-touch-icon" sizes="152x152" href="static/icons/icon-152x152.png">
1874
+ <link rel="apple-touch-icon" sizes="180x180" href="static/icons/icon-180x180.png">
1875
+ <link rel="apple-touch-icon" sizes="167x167" href="static/icons/icon-167x167.png">
1876
+ """
1877
  )