Files
ComfyBox/src/main-desktop.ts
2023-05-13 22:13:06 -05:00

11 lines
200 B
TypeScript

import { LiteGraph } from '@litegraph-ts/core';
import App from './App.svelte';
LiteGraph.use_uuids = true;
const app = new App({
target: document.getElementById('app'),
})
export default app;