From c868818ba2454f1e899f2336cb3778997ee1392f Mon Sep 17 00:00:00 2001 From: Max Richter Date: Sun, 23 Nov 2025 15:15:50 +0100 Subject: [PATCH] feat: use local node registry again --- app/src/routes/+page.svelte | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/app/src/routes/+page.svelte b/app/src/routes/+page.svelte index 8944801..331cce1 100644 --- a/app/src/routes/+page.svelte +++ b/app/src/routes/+page.svelte @@ -32,10 +32,7 @@ let performanceStore = createPerformanceStore(); const registryCache = new IndexDBCache("node-registry"); - const nodeRegistry = new RemoteNodeRegistry( - "https://node-store.app.max-richter.dev", - registryCache, - ); + const nodeRegistry = new RemoteNodeRegistry("", registryCache); const workerRuntime = new WorkerRuntimeExecutor(); const runtimeCache = new MemoryRuntimeCache(); const memoryRuntime = new MemoryRuntimeExecutor(nodeRegistry, runtimeCache);