vue.config.js 251 B

1234567891011121314
  1. module.exports = {
  2. devServer: {
  3. port: 3000,
  4. proxy: {
  5. '/api': {
  6. target: 'http://localhost:8080',
  7. changeOrigin: true,
  8. pathRewrite: {
  9. "^/api": "" // rewrite path
  10. }
  11. }
  12. }
  13. }
  14. }