Please provide more details.
I assume this person is wondering how to set the default axios timeout when using this module. You could do it in a plugin using $axios.defaults.timeout, but I would have assumed you could do it within the axios section of nuxt.config.js, but that doesn't seem to work.
In the nuxt project simply add it to the plugin/axios.js file inside export function
$axios.defaults.timeout = timeInMilliseconds

Most helpful comment
I assume this person is wondering how to set the default axios timeout when using this module. You could do it in a plugin using $axios.defaults.timeout, but I would have assumed you could do it within the axios section of nuxt.config.js, but that doesn't seem to work.