vue.config.js 772 B

123456789101112131415161718192021222324252627282930313233
  1. const path = require('path');
  2. const publics = path.resolve(__dirname, '../web-common');
  3. module.exports = {
  4. publicPath: '/',
  5. // 双页面配置
  6. // pages: {
  7. // index: 'src/views/index/main.js',
  8. // },
  9. configureWebpack: config => {
  10. Object.assign(config, {
  11. // 开发生产共同配置
  12. resolve: {
  13. alias: {
  14. '@': path.resolve(__dirname, './src'),
  15. '@c': path.resolve(__dirname, './src/components'),
  16. '@a': path.resolve(__dirname, './src/assets'),
  17. '@publics': publics,
  18. },
  19. },
  20. });
  21. },
  22. devServer: {
  23. port: '8001',
  24. //api地址前缀
  25. proxy: {
  26. '/weixin': {
  27. target: 'http://smart.cc-lotus.info',
  28. changeOrigin: true,
  29. ws: true,
  30. },
  31. },
  32. },
  33. };