We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 537f209 commit 65bce9fCopy full SHA for 65bce9f
2 files changed
docker-compose.yml
@@ -2,7 +2,7 @@ version: '3.8'
2
3
services:
4
radeon-blog:
5
- image: git.zigz.uk/radeonrr/radeon-master-radeon-blog
+ image: git.zigz.uk/radeonrr/radeon-master-blog
6
env_file:
7
- .radeonblog.env
8
ports:
src/utils/url.ts
@@ -1,4 +1,6 @@
1
export function capitalizeDomainPrefix(domain: string): string {
+ domain = domain || "epicquest.live";
+
const parts = domain.split(".");
return parts[0].toUpperCase() + "." + parts[1];
0 commit comments