Skip to content

Commit

Permalink
Merge pull request #5068 from kiva/fix-server-dynamic-api-host
Browse files Browse the repository at this point in the history
fix: ensure server api url uses passed env var too
  • Loading branch information
mcstover authored Nov 10, 2023
2 parents a31089f + 5fe7a95 commit e01c40e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/dynamic.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ module.exports = {
},
server: {
disableCluster: true,
graphqlUri: `https://gateway.${baseUrl}/graphql`,
graphqlUri: process.env.API_HOSTNAME || `https://gateway.${baseUrl}/graphql`,
gzipEnabled: false,
memcachedEnabled: true,
memcachedServers,
Expand Down

0 comments on commit e01c40e

Please sign in to comment.