(value: string)
| 286 | } |
| 287 | |
| 288 | function normalizeOptionalPublicBaseUrl(value: string): string | null { |
| 289 | const trimmed = value.trim(); |
| 290 | if (!trimmed || trimmed === "null" || trimmed === "none") return null; |
| 291 | |
| 292 | return normalizePublicBaseUrl(trimmed); |
| 293 | } |
| 294 | |
| 295 | function normalizePublicBaseUrl(value: string): string { |
| 296 | const trimmed = value.trim(); |
no test coverage detected