From f91e67ad6b0417878b5631166f52a37a9f0bb3e1 Mon Sep 17 00:00:00 2001 From: Chad Scharf <3904944+cscharf@users.noreply.github.com> Date: Fri, 12 Jun 2020 19:51:00 -0400 Subject: [PATCH] Revert services.module.ts --- src/app/services/services.module.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/services/services.module.ts b/src/app/services/services.module.ts index e0911bc55b..c74261dd31 100644 --- a/src/app/services/services.module.ts +++ b/src/app/services/services.module.ts @@ -143,9 +143,9 @@ export function initFactory(): Function { } apiService.setUrls({ base: isDev ? null : window.location.origin, - api: isDev ? 'http://localhost:5000' : null, - identity: isDev ? 'http://localhost:33657' : null, - events: isDev ? 'http://localhost:46274' : null, + api: isDev ? 'http://localhost:4000' : null, + identity: isDev ? 'http://localhost:33656' : null, + events: isDev ? 'http://localhost:46273' : null, // Uncomment these (and comment out the above) if you want to target production // servers for local development.