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