Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 554 Bytes

configuredby.md

File metadata and controls

17 lines (11 loc) · 554 Bytes

ConfiguredBy

How we see the domain's configuration. - CNAME: Domain has a CNAME pointing to Vercel. - A: Domain's A record is resolving to Vercel. - http: Domain is resolving to Vercel but may be behind a Proxy. - dns-01: Domain is not resolving to Vercel but dns-01 challenge is enabled. - null: Domain is not resolving to Vercel.

Example Usage

import { ConfiguredBy } from "@vercel/sdk/models/getdomainconfigop.js";

let value: ConfiguredBy = "dns-01";

Values

"CNAME" | "A" | "http" | "dns-01"