HuRongxin 1 개월 전
부모
커밋
5d0e68d053
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      vite.config.ts

+ 3 - 3
vite.config.ts

@@ -27,11 +27,11 @@ export default defineConfig(({mode, command}) => {
       port: Number(env.VITE_APP_PORT),
       open: true,
       proxy: {
-        '/dev-api': {
-          target: 'http://192.168.1.237',
+        [env.VITE_APP_BASE_API]: {
+          target: 'http://localhost:8080',
           changeOrigin: true,
           ws: true,
-          rewrite: (path) => path.replace(/^\/dev-api/, '')
+          rewrite: (path) => path.replace(new RegExp('^' + env.VITE_APP_BASE_API), '')
         }
       }
     },