-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
36 lines (32 loc) · 997 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import registerServiceWorker from './registerServiceWorker';
import Axios from 'axios';
Axios.defaults.baseURL = "https://jsonplaceholder.typicode.com";
Axios.defaults.headers.common['Authorization'] = 'Token ';
Axios.defaults.headers.post['Content-Type'] = 'application/json';
Axios.interceptors.request.use(request => {
console.log(request);
// Edit request config here. Eg: You can add headers
// to your request here.
return request;
}, error => {
console.log(error);
return Promise.reject(error);
});
Axios.interceptors.response.use(
response => {
console.log(response);
// Edit request config here. Eg: You can add headers
// to your request here.
return response;
},
error => {
console.log(error);
return Promise.reject(error);
}
);
ReactDOM.render( <App />, document.getElementById( 'root' ) );
registerServiceWorker();