Skip to content

Instantly share code, notes, and snippets.

@devhero
Created September 15, 2017 13:18
Show Gist options
  • Save devhero/100332ea65de2163bbb9d9bdc8431e03 to your computer and use it in GitHub Desktop.
Save devhero/100332ea65de2163bbb9d9bdc8431e03 to your computer and use it in GitHub Desktop.
webpack proxy
module.exports = {
devServer: {
proxy: {
'/api': {
target: 'https://other-server.example.com',
pathRewrite: {'^/api' : ''}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment