vue.config.js 413 B

12345678910111213141516171819
  1. const path = require('path');
  2. module.exports = {
  3. transpileDependencies: ['uview-ui'],
  4. devServer: {
  5. port: '6901',
  6. //api地址前缀
  7. proxy: {
  8. // '/api/util': {
  9. // target: 'http://localhost:6900',
  10. // changeOrigin: true,
  11. // },
  12. // '/api': {
  13. // target: 'http://baoan.fwedzgc.com:8090',
  14. // changeOrigin: true,
  15. // ws: false,
  16. // },
  17. },
  18. },
  19. };