chore: remote search json

This commit is contained in:
Cory Dransfeldt 2024-10-19 09:54:48 -07:00
parent 72d6d6a8ac
commit e7389ce4c0
No known key found for this signature in database

View file

@ -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