vue.config.js 1007 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. const path = require('path');
  2. module.exports = {
  3. publicPath: process.env.NODE_ENV === 'development' ? '/' : '/examine',
  4. outputDir: 'examine',
  5. configureWebpack: config => {
  6. Object.assign(config, {
  7. // 开发生产共同配置
  8. resolve: {
  9. alias: {
  10. '@': path.resolve(__dirname, './src'),
  11. '@c': path.resolve(__dirname, './src/components'),
  12. '@a': path.resolve(__dirname, './src/assets'),
  13. },
  14. },
  15. });
  16. },
  17. devServer: {
  18. port: '8001',
  19. //api地址前缀
  20. proxy: {
  21. '/files': {
  22. target: 'http://smart.cc-lotus.info',
  23. changeOrigin: true,
  24. ws: true,
  25. },
  26. '/ws': {
  27. target: 'http://free.liaoningdoupo.com',
  28. ws: true,
  29. },
  30. '/weixin': {
  31. target: 'http://smart.cc-lotus.info',
  32. changeOrigin: true,
  33. ws: true,
  34. },
  35. '/api': {
  36. target: 'http://free.liaoningdoupo.com',
  37. changeOrigin: true,
  38. ws: true,
  39. },
  40. },
  41. },
  42. };