From e7389ce4c0b73c04a1fe4b4f853721c1b1b7231a Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sat, 19 Oct 2024 09:54:48 -0700 Subject: [PATCH] chore: remote search json --- src/assets/scripts/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/assets/scripts/index.js b/src/assets/scripts/index.js index a241f295..b3011ae5 100644 --- a/src/assets/scripts/index.js +++ b/src/assets/scripts/index.js @@ -108,7 +108,7 @@ window.addEventListener('load', () => { const loadSearchIndex = async () => { try { - const response = await fetch('/api/search') + const response = await fetch('https://coryd.dev/api/search') const index = await response.json() const resultsById = index.reduce((byId, result) => { byId[result.id] = result