2023-03-03 04:00:06 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
2023-03-03 05:34:29 +08:00
|
|
|
<head>
|
2023-03-17 00:05:26 +08:00
|
|
|
<meta charset="UTF-8">
|
2023-04-08 04:26:06 +08:00
|
|
|
<title>ComfyUI</title>
|
2023-03-17 17:36:50 +08:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
|
2023-07-10 17:09:03 +08:00
|
|
|
<link rel="stylesheet" type="text/css" href="./lib/litegraph.css" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="./style.css" />
|
2023-08-17 20:36:55 +08:00
|
|
|
<link rel="stylesheet" type="text/css" href="./user.css" />
|
2023-07-10 17:09:03 +08:00
|
|
|
<script type="text/javascript" src="./lib/litegraph.core.js"></script>
|
|
|
|
<script type="text/javascript" src="./lib/litegraph.extensions.js" defer></script>
|
2023-03-03 05:34:29 +08:00
|
|
|
<script type="module">
|
2023-07-10 17:09:03 +08:00
|
|
|
import { app } from "./scripts/app.js";
|
2023-03-03 05:34:29 +08:00
|
|
|
await app.setup();
|
|
|
|
window.app = app;
|
|
|
|
window.graph = app.graph;
|
|
|
|
</script>
|
|
|
|
</head>
|
2023-05-31 05:01:49 +08:00
|
|
|
<body class="litegraph"></body>
|
2023-03-03 04:00:06 +08:00
|
|
|
</html>
|