# extendify/0.10.1/src/Assist/api/axios.js

Extendify, version 0.10.1. 14 lines.

- Page: https://pluginprobe.com/plugins/extendify/0.10.1/code/src/Assist/api/axios.js
- Raw: https://pluginprobe.com/plugins/extendify/0.10.1/raw/src/Assist/api/axios.js
- Modified: 2022-09-07T00:59:24+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/extendify/0.10.1/code/src/Assist/api/axios.js#L10-L20`.

```javascript
import axios from 'axios'

const Axios = axios.create({
    baseURL: window.extAssistData.root,
    headers: {
        'X-WP-Nonce': window.extAssistData.nonce,
        'X-Requested-With': 'XMLHttpRequest',
        'X-Extendify-Assist': true,
        'X-Extendify': true,
    },
})

export { Axios }

```
