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

  

posted @ 2018-12-01 16:56  cnchengv  阅读(436)  评论(0编辑  收藏  举报