We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e5e43f9 + 76dc3e6 commit 8f34ad5Copy full SHA for 8f34ad5
1 file changed
README.md
@@ -153,6 +153,12 @@ const axios = require('axios');
153
console.log(axios.isCancel('something'));
154
```
155
156
+For some bundlers and some ES6 linter's you may need to do the following:
157
+
158
+```js
159
+import { default as axios } from 'axios';
160
+```
161
162
For cases where something went wrong when trying to import a module into a custom or legacy environment,
163
you can try importing the module package directly:
164
0 commit comments