vue.config.js 458 B

1234567891011121314151617
  1. module.exports = {
  2. publicPath: './',
  3. devServer: {
  4. proxy: {
  5. '/api':{
  6. target:"http://8.136.230.133:8080",//这里设置你要访问的域名(或IP+端口)
  7. //target:"http://192.168.2.122:8080",//这里设置你要访问的域名(或IP+端口)
  8. changeOrigin:true,
  9. pathRewrite:{
  10. '^/api': '/'
  11. }
  12. }
  13. }
  14. }
  15. }