Skip to content

Commit ba218ee

Browse files
committed
chore: 로컬에서 스테이징 서버를 접근할 수 있도록 수정
1 parent f62dde5 commit ba218ee

4 files changed

Lines changed: 13 additions & 0 deletions

File tree

apps/pyconkr-2025/vite.config.mts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,8 @@ export default defineConfig({
1919
"@apps/pyconkr-2025": path.resolve(__dirname, "./src"),
2020
},
2121
},
22+
server: {
23+
host: "local.dev.pycon.kr",
24+
allowedHosts: ["local.dev.pycon.kr"],
25+
},
2226
});

apps/pyconkr-2026/vite.config.mts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,8 @@ export default defineConfig({
1919
"@apps/pyconkr-2026": path.resolve(__dirname, "./src"),
2020
},
2121
},
22+
server: {
23+
host: "local.dev.pycon.kr",
24+
allowedHosts: ["local.dev.pycon.kr"],
25+
},
2226
});

apps/pyconkr-admin/vite.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export default defineConfig({
2020
},
2121
},
2222
server: {
23+
host: "local.dev.pycon.kr",
2324
allowedHosts: ["local.dev.pycon.kr"],
2425
},
2526
});

apps/pyconkr-participant-portal/vite.config.mts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,8 @@ export default defineConfig({
1919
"@apps/pyconkr-participant-portal": path.resolve(__dirname, "./src"),
2020
},
2121
},
22+
server: {
23+
host: "local.dev.pycon.kr",
24+
allowedHosts: ["local.dev.pycon.kr"],
25+
},
2226
});

0 commit comments

Comments
 (0)