Nuxt/examples/axios
Rafał Chłodnicki 9e966a8f3c
chore(examples): use `2.x` version of nuxt instead of latest (#19737)
2023-03-16 06:24:27 -07:00
..
pages refactor: update eslint-config to 1.x 2019-07-10 15:15:49 +04:30
README.md refactor: use nuxt everywhere (#8210) 2020-11-30 23:44:04 +01:00
nuxt.config.js feat: rewrite core to esm 2018-03-16 19:42:06 +03:30
package.json chore(examples): use `2.x` version of nuxt instead of latest (#19737) 2023-03-16 06:24:27 -07:00

README.md

Nuxt with Axios Proxy Example

Using proxy-module and Axios module

proxy-module is the one-liner node.js http-proxy middleware solution for Nuxt using http-proxy-middleware

Axios-module is a secure and easy Axios integration with Nuxt.

Install

$ yarn add @nuxtjs/axios @nuxtjs/proxy

Nuxt.config.js

{
  modules: [
    '@nuxtjs/axios',
    '@nuxtjs/proxy'
  ],
  proxy: [
    ['/api/dog', { target: 'https://dog.ceo/', pathRewrite: { '^/api/dog': '/api/breeds/image/random' } }]
  ]
}

Use Axios

async asyncData({ app }) {
  const ip = await app.$axios.$get('http://icanhazip.com')
  return { ip }
}

More detail, please refer axios-module.