http/docs/guide
Daniel Roe 54cda7e1c3
docs: add notice about lack of support for ie11 (#127)
* docs: add notice about lack of support for ie11

* Update readme.md

Co-authored-by: pooya parsa <pyapar@gmail.com>
2020-09-01 14:33:53 +02:00
..
advanced.md feat: improve `$` helpers and error object (#113) 2020-06-17 13:01:35 +02:00
migration.md feat: add create helper and improve docs 2020-04-13 21:09:04 +02:00
readme.md docs: add notice about lack of support for ie11 (#127) 2020-09-01 14:33:53 +02:00
usage.md feat: improve `$` helpers and error object (#113) 2020-06-17 13:01:35 +02:00

readme.md

Setup

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

Installation

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.

::: warning Note that this module does not currently support IE 11 because of using ky (open issue) :::