mirror of
https://github.com/fosrl/pangolin.git
synced 2026-09-15 07:10:06 +02:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f16ed6802b | |||
| b982639dc4 | |||
| 56e758a656 |
+1
-1
@@ -1,4 +1,4 @@
|
||||
FROM node:24.18.1-alpine
|
||||
FROM node:26.8-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
|
||||
@@ -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");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user