Include cookie in every request

This commit is contained in:
eal 2017-09-02 19:29:45 +03:00
parent 2b0811dddc
commit 00589a9af1

View file

@ -36,7 +36,7 @@ let fetch = (url, options) => {
options = options || {}
const baseUrl = ''
const fullUrl = baseUrl + url
options.credentials = 'same-origin'
options.credentials = 'include'
return oldfetch(fullUrl, options)
}