We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e14099 commit 5142b35Copy full SHA for 5142b35
1 file changed
infra/index.ts
@@ -12,6 +12,7 @@ const discordInviteUrl = config.requireSecret('discord-invite-url');
12
13
const isProd = environment === 'production';
14
const workerDomain = isProd ? 'https://podcodar.org' : 'https://dev.podcodar.org';
15
+const workerHostname = isProd ? 'podcodar.org' : 'dev.podcodar.org';
16
17
const builder = new command.local.Command(
18
'build-worker',
@@ -101,7 +102,7 @@ new cloudflare.WorkersCustomDomain(
101
102
zoneId,
103
accountId,
104
service: worker.name,
- hostname: workerDomain,
105
+ hostname: workerHostname,
106
},
107
{ dependsOn: [worker, workerDeployment] }
108
);
0 commit comments