vue.config.js 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. const path = require('path');
  2. const common = path.resolve(__dirname, '../common');
  3. module.exports = {
  4. publicPath: process.env.NODE_ENV === 'development' ? '/' : process.env.VUE_APP_ROUTER,
  5. // outputDir: process.env.VUE_APP_ROUTER,
  6. configureWebpack: config => {
  7. Object.assign(config, {
  8. // 开发生产共同配置
  9. resolve: {
  10. alias: {
  11. '@': path.resolve(__dirname, './src'),
  12. '@c': path.resolve(__dirname, './src/components'),
  13. '@a': path.resolve(__dirname, './src/assets'),
  14. '@common': common,
  15. },
  16. },
  17. });
  18. },
  19. devServer: {
  20. port: '8001',
  21. //api地址前缀
  22. proxy: {
  23. '/weixin': {
  24. target: 'http://smart.cc-lotus.info',
  25. changeOrigin: true,
  26. ws: true,
  27. },
  28. '/files': {
  29. target: 'http://free.liaoningdoupo.com',
  30. },
  31. '/api': {
  32. target: 'http://free.liaoningdoupo.com',
  33. changeOrigin: true,
  34. ws: true,
  35. },
  36. // '/api/setting': {
  37. // target: 'http://free.liaoningdoupo.com',
  38. // // target: 'http://free.liaoningdoupo.com', //http://free.liaoningdoupo.com
  39. // changeOrigin: true,
  40. // ws: true,
  41. // },
  42. // '/api/affairs': {
  43. // target: 'http://free.liaoningdoupo.com',
  44. // changeOrigin: true,
  45. // ws: true,
  46. // },
  47. // '/api/policy': {
  48. // target: 'http://free.liaoningdoupo.com',
  49. // changeOrigin: true,
  50. // ws: true,
  51. // },
  52. // '/api/record': {
  53. // target: 'http://free.liaoningdoupo.com',
  54. // changeOrigin: true,
  55. // ws: true,
  56. // },
  57. // '/api/serve': {
  58. // target: 'http://free.liaoningdoupo.com',
  59. // changeOrigin: true,
  60. // ws: true,
  61. // // pathRewrite: { '^/api/affairs': '/api' },
  62. // },
  63. // '/api/talent': {
  64. // target: 'http://free.liaoningdoupo.com',
  65. // changeOrigin: true,
  66. // ws: true,
  67. // // pathRewrite: { '^/api/affairs': '/api' },
  68. // },
  69. // '/api/market': {
  70. // target: 'http://free.liaoningdoupo.com',
  71. // changeOrigin: true,
  72. // ws: true,
  73. // // pathRewrite: { '^/api/affairs': '/api' },
  74. // },
  75. // '/api/live': {
  76. // target: 'http://free.liaoningdoupo.com',
  77. // changeOrigin: true,
  78. // ws: true,
  79. // // pathRewrite: { '^/api/affairs': '/api' },
  80. // },
  81. '/ws': {
  82. target: 'http://free.liaoningdoupo.com',
  83. ws: true,
  84. },
  85. },
  86. },
  87. };