vue.config.js 343 B

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