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': '' },
}
},