We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a4ee0c commit 6f2772dCopy full SHA for 6f2772d
v3/packages/internarbeidsflate-decorator-v3/src/utils/urlUtils.ts
@@ -105,13 +105,14 @@ export const wsEventDistribusjon = (
105
environment: Environment,
106
urlFormat: UrlFormat,
107
) => {
108
+ const subdomain = environment === "prod" ? '' : '.dev'
109
switch (urlFormat) {
110
case 'LOCAL':
111
return 'ws://localhost:4000/ws/';
112
default:
113
return `wss://veilederflatehendelser${findEnvString(
114
environment,
- )}.adeo.no/modiaeventdistribution/ws/`;
115
+ )}${subdomain}.adeo.no/modiaeventdistribution/ws/`;
116
}
117
};
118
0 commit comments