Skip to content

Instantly share code, notes, and snippets.

@linxinemily
Last active March 4, 2019 17:01
Show Gist options
  • Save linxinemily/565b10db62bd91df63a52b87c44c9ea8 to your computer and use it in GitHub Desktop.
Save linxinemily/565b10db62bd91df63a52b87c44c9ea8 to your computer and use it in GitHub Desktop.
modules: [
'@nuxtjs/axios',
'@nuxtjs/proxy'
],
axios: {
proxy: true,
prefix: '/api',
credentials: true,
},
proxy: {
'/api': {
target: 'https://example.com/',
changeOrigin: true,
pathRewrite: {
'^/api': '',
},
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment