Skip to content

Instantly share code, notes, and snippets.

@richardoey
Created June 8, 2021 06:18
Show Gist options
  • Save richardoey/82de9aaf26c773cce3f6348a17bfde2d to your computer and use it in GitHub Desktop.
Save richardoey/82de9aaf26c773cce3f6348a17bfde2d to your computer and use it in GitHub Desktop.
Proxy Vue JS to server
module.exports = {
devServer: {
proxy: {
'^/api': {
target: 'http://localhost:8000',
changeOrigin: true,
secure: false,
pathRewrite: {
'^/api': '/api'
},
logLevel: 'debug'
},
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment