This commit is contained in:
Fejér Gergely András 2025-02-22 13:18:22 +00:00
parent aff16532d4
commit 19393de082
3 changed files with 23 additions and 0 deletions

View File

@ -1,6 +1,8 @@
<div align="center">
# ComfyUI
Fork for added PWA (Progressive Web Apps) iOS support.
**The most powerful and modular diffusion model GUI and backend.**

12
web/index.html vendored
View File

@ -8,6 +8,18 @@
<link rel="stylesheet" type="text/css" href="materialdesignicons.min.css" />
<script type="module" crossorigin src="./assets/index-Bv0b06LE.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-CBxvvAzM.css">
<!-- iOS Web App Support -->
<!-- Fullscreen mode on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- Status bar style (eg. black or transparent) -->
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- Responsive viewport setting -->
<meta name="viewport" content="width=device-width, initial-scale=1, viewpor>
<link rel="manifest" href="manifest.json">
</head>
<body class="litegraph grid">
<div id="vue-app"></div>

9
web/manifest.json vendored Normal file
View File

@ -0,0 +1,9 @@
{
"name": "ComfyUI",
"short_name": "ComfyUI",
"description": "ComfyUI AI image generation platform",
"start_url": "/",
"display": "standalone",
"background_color": "#ffffff",
"theme_color": "#000000"
}