From 84e5e918944b798a7409a7052477883e5d5cd935 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Fri, 18 Oct 2024 17:57:46 -0700 Subject: [PATCH] fix: be less precious about data formats --- .gitignore | 1 + src/assets/js/index.js | 2 +- src/pages/data/search.json.liquid | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index a55e8364..a094eaba 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ _site node_modules .cache +.11ty-vite # local dependencies .env.local diff --git a/src/assets/js/index.js b/src/assets/js/index.js index 7270e9d4..b7219cbc 100644 --- a/src/assets/js/index.js +++ b/src/assets/js/index.js @@ -110,7 +110,7 @@ window.addEventListener('load', () => { const loadSearchIndex = async () => { try { - const response = await fetch('/api/search') + const response = await fetch('/data/search.json') const index = await response.json() const resultsById = index.reduce((byId, result) => { byId[result.id] = result diff --git a/src/pages/data/search.json.liquid b/src/pages/data/search.json.liquid index ae4ac018..e8578c8f 100644 --- a/src/pages/data/search.json.liquid +++ b/src/pages/data/search.json.liquid @@ -1,4 +1,4 @@ --- -permalink: "/api/search" +permalink: "/data/search.json" --- {{ search | json }} \ No newline at end of file