Skip to content

Instantly share code, notes, and snippets.

@mzabriskie
Created March 2, 2016 20:18
Show Gist options
  • Save mzabriskie/029c620ca97a45fd702d to your computer and use it in GitHub Desktop.
Save mzabriskie/029c620ca97a45fd702d to your computer and use it in GitHub Desktop.
Auto detect Greasemonkey and use custom axios adapter if available
import axios from 'axios';
if (typeof GM_xmlhttpRequest === 'function') {
import GMAdapter from './GMAdapter';
axios.defaults.adapter = GMAdapter;
}
export default axios;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment