index.html 426 Bytes
Newer Older
pythongosssss's avatar
pythongosssss committed
1
2
<!DOCTYPE html>
<html lang="en">
pythongosssss's avatar
pythongosssss committed
3
4
5
6
7
8
9
10
11
12
13
14
	<head>
		<link rel="stylesheet" type="text/css" href="lib/litegraph.css" />
		<link rel="stylesheet" type="text/css" href="style.css" />
		<script type="text/javascript" src="lib/litegraph.core.js"></script>

		<script type="module">
			import { app } from "/scripts/app.js";
			await app.setup();
			window.app = app;
			window.graph = app.graph;
		</script>
	</head>
pythongosssss's avatar
pythongosssss committed
15
	<body></body>
pythongosssss's avatar
pythongosssss committed
16
</html>