mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-28 10:12:11 +00:00
Fix relative paths (#447)
ComfyUI is not necessarily the webroot, paths should be relative rather than absolute
This commit is contained in:
committed by
GitHub
parent
429e44f74d
commit
9e3dffd7fd
@@ -18,9 +18,9 @@
|
|||||||
window["__COMFYUI_FRONTEND_VERSION__"] = __COMFYUI_FRONTEND_VERSION__;
|
window["__COMFYUI_FRONTEND_VERSION__"] = __COMFYUI_FRONTEND_VERSION__;
|
||||||
console.log("ComfyUI Front-end version:", __COMFYUI_FRONTEND_VERSION__);
|
console.log("ComfyUI Front-end version:", __COMFYUI_FRONTEND_VERSION__);
|
||||||
</script>
|
</script>
|
||||||
<script type="module" src="/src/main.ts"></script>
|
<script type="module" src="src/main.ts"></script>
|
||||||
<link rel="stylesheet" type="text/css" href="/user.css" />
|
<link rel="stylesheet" type="text/css" href="user.css" />
|
||||||
<link rel="stylesheet" type="text/css" href="/materialdesignicons.min.css" />
|
<link rel="stylesheet" type="text/css" href="materialdesignicons.min.css" />
|
||||||
</head>
|
</head>
|
||||||
<body class="litegraph">
|
<body class="litegraph">
|
||||||
<div id="vue-app"></div>
|
<div id="vue-app"></div>
|
||||||
|
|||||||
Reference in New Issue
Block a user