Add base url to index.html (#5732)

This commit is contained in:
Deep Roy
2025-09-23 13:50:47 -04:00
committed by GitHub
parent 2702ac64fe
commit 1c0f151d02

View File

@@ -3,19 +3,21 @@
<head>
<meta charset="UTF-8">
<title>ComfyUI</title>
<!-- All assets should be loaded from the root no matter the initial path -->
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<link rel="stylesheet" type="text/css" href="materialdesignicons.min.css" />
<link rel="stylesheet" type="text/css" href="user.css" />
<link rel="stylesheet" type="text/css" href="api/userdata/user.css" />
<!-- 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">
<link rel="manifest" href="manifest.json">
</head>
<body class="litegraph grid">
<div id="vue-app"></div>
<script type="module" src="src/main.ts"></script>