10 lines
218 B
TypeScript
10 lines
218 B
TypeScript
import { MeiliConfig } from '@/modules/meilisearch/types';
|
|
|
|
export const MEILI_CONFIG = (): MeiliConfig => [
|
|
{
|
|
name: 'default',
|
|
host: 'http://localhost:7700',
|
|
apiKey: 'masterKey',
|
|
},
|
|
];
|