nuxt.js配置@nuxtjs/axios

Others 2019-10-31 08:11:04 2019-10-31 08:11:04 2499 次浏览
  modules: [
    // Doc: https://axios.nuxtjs.org/usage
    '@nuxtjs/axios'
  ],
  /*
  ** Axios module configuration
  ** See https://axios.nuxtjs.org/options
  */
 axios:{
  proxy: true,
  prefix: '/api', // it only work when proxy is enabled
  credentials: true,
},
proxy: {
  '/api': {
    target: 'http://t.weather.sojson.com/',
    changeOrigin: true,
    pathRewrite: { '^/api': '' },
  }
 
},