blob: ef8c1bd4c4ace7a32210ddbd132430c5f6242cf5 [file] [edit]
// Contains the global config values which can be adjusted
export const GridConfig = {
status: {
// How often we poll the GraphQL endpoint
xhrPollingIntervalMillis: 5000
},
// Server config (Start the Selenium Server with the "--allow-cors true" flag)
serverUri:
process.env.NODE_ENV === 'development'
? 'http://localhost:4444/graphql'
: document.location.protocol + '//' + document.location.host + '/graphql'
}