From 2f04b1470a95fabb2764d492b38138be1074e676 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Thu, 13 Jan 2022 22:31:54 +0100 Subject: [PATCH] removed frontend port from configs - no longer needed --- frontend/.env.dist | 3 +-- frontend/src/config/index.js | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/frontend/.env.dist b/frontend/.env.dist index 80dafb7f9..3602c4dd2 100644 --- a/frontend/.env.dist +++ b/frontend/.env.dist @@ -1,4 +1,3 @@ -GRAPHQL_URI=http://localhost:4000/graphql +GRAPHQL_URI=http://localhost/graphql DEFAULT_PUBLISHER_ID=2896 -#BUILD_COMMIT=0000000 ADMIN_AUTH_URL=http://localhost/admin/authenticate?token=$1 \ No newline at end of file diff --git a/frontend/src/config/index.js b/frontend/src/config/index.js index b3a9366b7..000d5fb37 100644 --- a/frontend/src/config/index.js +++ b/frontend/src/config/index.js @@ -19,7 +19,7 @@ const environment = { } const endpoints = { - GRAPHQL_URI: process.env.GRAPHQL_URI || 'http://localhost:4000/graphql', + GRAPHQL_URI: process.env.GRAPHQL_URI || 'http://localhost/graphql', ADMIN_AUTH_URL: process.env.ADMIN_AUTH_URL || 'http://localhost/admin/authenticate?token=$1', }