vue3+vite跨域设置,设置默认端口,默认打开浏览器

vite.config.ts中设置

server: {
  proxy: {
    '/apis': {
      target: 'http://localhost:44311/', // 实际请求地址
      changeOrigin: true,
      rewrite: (path) => path.replace(/^\/apis/, '')
    },
  },
   //默认打开端口
  port:5174,
    //默认打开浏览器
  open:true,
},
posted @ 2024-05-19 21:07  静坐仰望星空  阅读(384)  评论(0)    收藏  举报