Skip to content

Instantly share code, notes, and snippets.

@monkov
Last active August 24, 2021 08:05
Show Gist options
  • Save monkov/f42d0e781b1d226a337d66e9eae39681 to your computer and use it in GitHub Desktop.
Save monkov/f42d0e781b1d226a337d66e9eae39681 to your computer and use it in GitHub Desktop.
import axios from 'axios';
export default class authService {
init = () => {
this.setInterceptors();
};
setInterceptors = () => {
axios.defaults.headers.common['Token'] = localStorage.getItem("token");
axios.defaults.headers.common['Device'] = "device";
...
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment