vue.config.js 233 B

123456789101112131415
  1. module.exports = {
  2. devServer: {
  3. port: '9274',
  4. disableHostCheck: true,
  5. proxy: {
  6. '/dev-api': {
  7. target: 'https://test-mp.quanshu123.com',
  8. changeOrigin: true,
  9. pathRewrite: {
  10. '^/dev-api': ''
  11. }
  12. }
  13. }
  14. }
  15. }