From 56e758a656075714bf36a9d27a139dfba9a6be00 Mon Sep 17 00:00:00 2001 From: Owen Date: Mon, 14 Sep 2026 18:05:17 -0400 Subject: [PATCH] Resolve oss build issue --- server/lib/dns/generateDomains.ts | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/server/lib/dns/generateDomains.ts b/server/lib/dns/generateDomains.ts index cde08254f..8f407ae46 100644 --- a/server/lib/dns/generateDomains.ts +++ b/server/lib/dns/generateDomains.ts @@ -1,3 +1,10 @@ -export function createCname(domainId: string, baseDomain: string) {} +export function createCname( + domainId: string, + baseDomain: string +): { baseDomain: string; value: string }[] { + throw new Error("Creating CNAME records is not supported in this build"); +} -export function createNs() {} +export function createNs(): string[] { + throw new Error("Creating NS records is not supported in this build"); +}