vue.config.js 968 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. const baseUrl = '/yl-web'
  2. const path = require('path')
  3. const frameSrc = path.resolve(__dirname)
  4. module.exports = {
  5. publicPath: baseUrl,
  6. productionSourceMap: false,
  7. configureWebpack: {
  8. resolve: {
  9. alias: {
  10. '@lib': path.join(frameSrc, '/lib')
  11. }
  12. }
  13. },
  14. devServer: {
  15. port: 3000,
  16. proxy: {
  17. '/api/': {
  18. target: 'http://127.0.0.1:9001'
  19. // target: 'http://192.168.0.81:18070'
  20. // target: 'http://medical.cc-lotus.info'
  21. },
  22. '/tyylfiles/': {
  23. target: 'http://localhost:8009',
  24. pathRewrite: { '^/tyylfiles/': '/tyyl/' }
  25. // target: 'http://192.168.4.1:7001'
  26. },
  27. '/files/tyyl/': {
  28. target: 'http://localhost:8006'
  29. },
  30. '/auth': {
  31. target: 'http://wx.cc-lotus.info',
  32. pathRewrite: { '^/auth': '/api/auth' }
  33. },
  34. '/naf/': {
  35. // target: 'http://localhost:18070'
  36. target: 'http://127.0.0.1:9002'
  37. }
  38. }
  39. }
  40. }