vue.config.js 443 B

1234567891011121314151617181920212223
  1. module.exports = {
  2. lintOnSave: false,
  3. productionSourceMap: false,
  4. devServer: {
  5. port: 4000,
  6. proxy: {
  7. '/api': {
  8. target: 'http://testapi.mige.tv',
  9. changeOrigin: true,
  10. pathRewrite: {
  11. '^/api': '/'
  12. }
  13. },
  14. '/foo': {
  15. target: 'http://csapi.mige.tv:809/TestorderFlow',
  16. changeOrigin: true,
  17. pathRewrite: {
  18. '^/foo': '/'
  19. }
  20. },
  21. }
  22. }
  23. }