removed frontend port from configs - no longer needed

This commit is contained in:
Ulf Gebhardt 2022-01-13 22:31:54 +01:00
parent f3a949f278
commit 2f04b1470a
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9
2 changed files with 2 additions and 3 deletions

View File

@ -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

View File

@ -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',
}