Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save VivienAdnot/3a042d1912b152d4c98b9d2864852556 to your computer and use it in GitHub Desktop.
Save VivienAdnot/3a042d1912b152d4c98b9d2864852556 to your computer and use it in GitHub Desktop.
Axios 401 response interceptor.
// Add a 401 response interceptor
window.axios.interceptors.response.use(function (response) {
return response;
}, function (error) {
if (401 === error.response.status) {
window.location = '/login';
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment