Skip to content

Commit

Permalink
fix: ensure server api url uses passed env var too
Browse files Browse the repository at this point in the history
  • Loading branch information
mcstover committed Nov 10, 2023
1 parent a31089f commit 5fe7a95
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 5fe7a95

Please sign in to comment.