Skip to content

Instantly share code, notes, and snippets.

@pmkay
Created September 24, 2019 14:20
Show Gist options
  • Save pmkay/718671643371268d772b8a0000bda9e1 to your computer and use it in GitHub Desktop.
Save pmkay/718671643371268d772b8a0000bda9e1 to your computer and use it in GitHub Desktop.
Nuxt Axios Proxy Module (passing some data in server side when fetching api)
{
axios: {
prefix: '/api/',
proxy: true,
},
proxy: {
'/api': {
target: apiUrl,
pathRewrite: { '^/api/': '' },
headers: { 'X-API-KEY': apiKey },
logLevel: 'debug',
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment