Skip to content

Commit 99a2749

Browse files
committed
fix: server.proxy.target이 VITE_PROXY_TARGET을 참조하도록 수정
1 parent 3accead commit 99a2749

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export default ({ mode }: ConfigEnv) => {
2020
server: {
2121
proxy: {
2222
'/api': {
23-
target: env.VITE_API_BASE_URL,
23+
target: env.VITE_PROXY_TARGET,
2424
changeOrigin: true,
2525
secure: false,
2626
},

0 commit comments

Comments
 (0)