vue.config.js 316 B

1234567891011121314
  1. // vue.config.js
  2. module.exports = {
  3. devServer: {
  4. proxy: {
  5. '/api': {
  6. target: 'http://10.0.60.53:8989',
  7. changeOrigin: true,
  8. pathRewrite: {
  9. '^/api': ''
  10. }
  11. }
  12. }
  13. }
  14. }