Vulcan/packages/vulcan-lib/lib/client/apollo-client/links/http.js

7 lines
158 B
JavaScript
Raw Normal View History

import { HttpLink } from 'apollo-link-http';
const httpLink = new HttpLink({
uri: '/graphql',
credentials: 'same-origin',
});
export default httpLink