vue.config.js 492 B

12345678910111213141516
  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. target: 'https://test.hunanwanzhu.com',
  11. changeOrigin: true,
  12. }
  13. }
  14. },
  15. publicPath: '/'
  16. }