export default (slug: string) => { return { event: { url: "http://localhost:9000/event-api/v1", endpoint: { event: "event", log: "log", }, queue: { key: "biggy-event-queue", }, }, cdn: { url: "http://localhost:9090", }, logger: { supressErrors: false, }, conversion: { campaign: "baa", // :goat: mail: "bma", }, cookies: { ga: { key: `biggy-ga-${slug}`, ttl: 30 * 60, // 30 minutes }, session: { key: `biggy-session-${slug}`, ttl: 30 * 60, // 30 minutes }, anonymous: { key: "biggy-anonymous", ttl: 365 * 24 * 60 * 60, // 365 days }, variant: { key: "sp-variant", ttl: 30 * 60, // 30 days }, }, osiris: { variant: { path: "/_v/api/intelligent-search/variant-proxy/v1/variant", }, }, }; };