Files
ComfyBox/src/main-desktop.ts
space-nuko 38ae728eef Fix init
2023-05-25 14:09:36 -05:00

19 lines
405 B
TypeScript

// Run node registration before anthing else, in the proper order
import "$lib/nodeImports";
import ComfyApp from '$lib/components/ComfyApp';
import init from '$lib/init';
import App from './App.svelte';
init();
const comfyApp = new ComfyApp();
(window as any).app = comfyApp;
const app = new App({
target: document.getElementById("app-root"),
props: { app: comfyApp }
})
export default app;