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