http/docs/extend.md

35 lines
577 B
Markdown
Raw Normal View History

2018-02-17 15:37:27 +00:00
## Extending Axios
If you need to customize axios by registering interceptors and changing global config, you have to create a nuxt plugin.
**nuxt.config.js**
```js
{
modules: [
2019-03-18 17:49:29 +00:00
'@nuxt/http',
2018-02-17 15:37:27 +00:00
],
plugins: [
'~/plugins/axios'
]
}
```
**plugins/axios.js**
```js
export default function ({ $axios, redirect }) {
$axios.onRequest(config => {
console.log('Making request to ' + config.url)
})
$axios.onError(error => {
const code = parseInt(error.response && error.response.status)
if (code === 400) {
redirect('/400')
}
})
}
```