Skip to content

Instantly share code, notes, and snippets.

@aliselcuk
Created December 7, 2018 13:22
Show Gist options
  • Save aliselcuk/e21896ccc2d20729d19092ab6a03b98e to your computer and use it in GitHub Desktop.
Save aliselcuk/e21896ccc2d20729d19092ab6a03b98e to your computer and use it in GitHub Desktop.
Working webpack-dev-server proxy config
devServer: {
host: 'acp.superv.dev.io',
port: 8080,
proxy: {
'/api': {
target: 'http://api.superv.dev.io',
pathRewrite: { '^/api': 'acp' },
changeOrigin: true,
},
},
}
@aliselcuk
Copy link
Author

{ KEY POINT } Axios base url should point to:
http://acp.superv.dev.io:8080/api

And it will proxy this:
http://acp.superv.dev.io:8080/api/login

to this:
http://api.superv.dev.io/acp/login

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment