vue.config.js 594 B

12345678910111213141516171819202122
  1. module.exports = {
  2. // 配置路径别名
  3. configureWebpack: {
  4. devServer: {
  5. "port": 8080,
  6. // 调试时允许内网穿透,让外网的人访问到本地调试的H5页面
  7. disableHostCheck: true,
  8. "proxy": {
  9. "/api": {
  10. "target": "http://api.bencao.dev.xmnk.cn", // 需要跨域的域名
  11. // "target":"https://bcsyds.hactcm.edu.cn/api",
  12. "changeOrigin": true,
  13. "secure": false,
  14. "pathRewrite": {
  15. "^/api": "" //匹配请求路径里面有 /api 替换成 https://www.xxx.cn
  16. }
  17. }
  18. }
  19. },
  20. //productionSourceMap: false,
  21. },
  22. }