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