This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / web / src / lib / server / bobbin.ts
283 B 5 lines
1import { createBobbinClient, type BobbinContext } from '$lib/api/client'; 2import { getConfig } from './config'; 3 4export const serverBobbin = (event: { fetch: typeof globalThis.fetch }): BobbinContext => 5 createBobbinClient({ serviceUrl: getConfig().bobbinUrl, fetch: event.fetch });