From ff6f04e6615f6f17a810bccf16d997fedd74af03 Mon Sep 17 00:00:00 2001 From: James Prevett Date: Mon, 11 Nov 2024 22:46:42 -0600 Subject: [PATCH] Fixed index path --- src/common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common.ts b/src/common.ts index 569d8b5..360e29c 100644 --- a/src/common.ts +++ b/src/common.ts @@ -10,7 +10,7 @@ await configure({ backend: Overlay, readable: Fetch.create({ baseUrl: '/system', - index: '/index.json', + index: 'index.json', }), writable: InMemory.create({ name: 'root-cow' }), },