Import ComfyReroute

This commit is contained in:
space-nuko
2023-04-07 04:50:16 -05:00
parent 1ad77f49ef
commit e6bab41563
21 changed files with 1411 additions and 2090 deletions

View File

@@ -1,6 +1,6 @@
<script lang="ts">
import ComfyApp from "$lib/components/ComfyApp.svelte"
import "litegraph.js/css/litegraph.css";
import "@litegraph-ts/core/css/litegraph.css";
</script>
<ComfyApp/>

View File

@@ -9,8 +9,8 @@ type OutputProps = {}
// contain a `PageLoad` type with a `params` and `data` object that matches our route.
// You need to run the dev server or `svelte-kit sync` to generate them.
export const load: PageLoad<OutputProps> = async ({
params,
data,
params,
data,
}) => {
return {}
return {}
}