nuxt axios代理

	modules: [
	  '@nuxtjs/axios',
	],
	axios: {
		//prefix: '/api/',
		proxy: true // Can be also an object with default options
	},

	proxy: {
       '/api': {
            target:  'http://10.46.50.143:3000',
            pathRewrite: {'^/api' : ''},
            changeOrigin: true,
            secure: false
       }
     },

  

原文地址:https://www.cnblogs.com/cnchengv/p/10050137.html