feat: remote search index

This commit is contained in:
Cory Dransfeldt 2024-10-19 13:31:55 -07:00
parent e7389ce4c0
commit 193366e946
No known key found for this signature in database
8 changed files with 186 additions and 170 deletions

View file

@ -1,19 +0,0 @@
import { createClient } from '@supabase/supabase-js'
const SUPABASE_URL = process.env.SUPABASE_URL
const SUPABASE_KEY = process.env.SUPABASE_KEY
const supabase = createClient(SUPABASE_URL, SUPABASE_KEY)
export default async function fetchSearchIndex() {
const { data, error } = await supabase
.from('optimized_search_index')
.select('search_index')
if (error) {
console.error('Error fetching search index data:', error)
return []
}
const [{ search_index } = {}] = data
return search_index || []
}