vue.config.js 433 B

123456789101112131415
  1. module.exports = {
  2. devServer: {
  3. proxy: {
  4. '/api': {
  5. // target:'http://39.107.246.59:81',
  6. // target: 'https://api.hunanwanzhu.com',
  7. // target:'http://caos.tederen.com',
  8. // target: 'https://wx.scxjc.club',
  9. target: 'http://47.107.124.163:8068',
  10. changeOrigin: true,
  11. }
  12. }
  13. },
  14. publicPath: '/'
  15. }