vue.config.js 340 B

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