vue.config.js 260 B

123456789101112131415
  1. module.exports = {
  2. publicPath: './',
  3. devServer: {
  4. proxy: {
  5. '^/api': {
  6. target: 'https://jmctcl.jiangmen.cn',
  7. changeOrigin: true,
  8. secure: false,
  9. pathRewrite: {
  10. '^/api': '/api'
  11. }
  12. }
  13. }
  14. }
  15. }