vue.config.js 601 B

12345678910111213141516171819202122232425262728
  1. const path = require('path');
  2. module.exports = {
  3. publicPath: '/',
  4. configureWebpack: config => {
  5. Object.assign(config, {
  6. // 开发生产共同配置
  7. resolve: {
  8. alias: {
  9. '@': path.resolve(__dirname, './src'),
  10. '@c': path.resolve(__dirname, './src/components'),
  11. '@a': path.resolve(__dirname, './src/assets'),
  12. },
  13. },
  14. });
  15. },
  16. devServer: {
  17. port: '8001',
  18. //api地址前缀
  19. proxy: {
  20. '/weixin': {
  21. target: 'http://smart.jilinjobswx.cn',
  22. changeOrigin: true,
  23. ws: true,
  24. },
  25. },
  26. },
  27. };