http/docs/guide
Dmitry Molotkov 0b149cc7d0 docs: broken link in guide (#56) 2019-07-10 14:15:06 +04:30
..
advanced.md docs: add tip about lower-case headers (#46) 2019-05-22 01:49:35 +04:30
migration.md docs: improve documentation (#6) 2019-04-10 14:40:03 +04:30
readme.md docs(options): Add link to options 2019-04-15 08:49:28 +02:00
usage.md docs: broken link in guide (#56) 2019-07-10 14:15:06 +04:30

readme.md

Setup

Check the Nuxt.js documentation for more information about installing and using modules in Nuxt.js

Install

Install with yarn:

yarn add @nuxt/http

Install with npm:

npm install @nuxt/http

Configure

Add 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.