Revert "fix: be less precious about data formats"
This reverts commit 84e5e91894
.
This commit is contained in:
parent
84e5e91894
commit
7a2a2aa951
3 changed files with 2 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -2,7 +2,6 @@
|
||||||
_site
|
_site
|
||||||
node_modules
|
node_modules
|
||||||
.cache
|
.cache
|
||||||
.11ty-vite
|
|
||||||
|
|
||||||
# local dependencies
|
# local dependencies
|
||||||
.env.local
|
.env.local
|
||||||
|
|
|
@ -110,7 +110,7 @@ window.addEventListener('load', () => {
|
||||||
|
|
||||||
const loadSearchIndex = async () => {
|
const loadSearchIndex = async () => {
|
||||||
try {
|
try {
|
||||||
const response = await fetch('/data/search.json')
|
const response = await fetch('/api/search')
|
||||||
const index = await response.json()
|
const index = await response.json()
|
||||||
const resultsById = index.reduce((byId, result) => {
|
const resultsById = index.reduce((byId, result) => {
|
||||||
byId[result.id] = result
|
byId[result.id] = result
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
---
|
---
|
||||||
permalink: "/data/search.json"
|
permalink: "/api/search"
|
||||||
---
|
---
|
||||||
{{ search | json }}
|
{{ search | json }}
|
Reference in a new issue