mirror of
https://github.com/linkwarden/linkwarden.git
synced 2026-06-29 23:37:04 +00:00
11 lines
242 B
TypeScript
11 lines
242 B
TypeScript
import { MeiliSearch } from "meilisearch";
|
|
|
|
const apiKey = process.env.MEILI_MASTER_KEY;
|
|
|
|
export const meiliClient = apiKey
|
|
? new MeiliSearch({
|
|
host: process.env.MEILI_HOST || "http://meilisearch:7700",
|
|
apiKey,
|
|
})
|
|
: null;
|