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