Changed graphQL port to default 10100. (#1265)

This commit is contained in:
Bogdan Artemenko 2019-02-07 18:01:30 +02:00 committed by GitHub
parent 987c112b02
commit 4493e5ef43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@ import { getToken } from '@/utils/tokenManager';
// Satellite url // Satellite url
const satelliteUrl = new HttpLink({ const satelliteUrl = new HttpLink({
uri: 'http://localhost:8081/api/graphql/v0', uri: 'http://localhost:10100/api/graphql/v0',
}); });