Monorepo for Wisp.place. A static site hosting service built on top of the AT Protocol.
1import type { BlobRef } from "@atproto/api"; 2 3/** 4 * Configuration for the Wisp client 5 * @typeParam Config 6 */ 7export type Config = { 8 /** The base domain URL with HTTPS protocol */ 9 domain: `https://${string}`, 10 /** Name of the client application */ 11 clientName: string 12};