Check the Nuxt.js documentation for more information about installing and using modules in Nuxt.js
Install with yarn:
yarn add @nuxt/httpInstall with npm:
npm install @nuxt/httpAdd a http object to your nuxt.config.js to configure global options which will be applied to all requests
module.exports = {
modules: [
'@nuxt/http',
],
http: {
// proxyHeaders: false
}
}See http's options.