Skip to content

Commit d20888a

Browse files
committed
#348 fix(fe): 빌드 환경변수 수정 및 timeout 추가
1 parent 1514f5f commit d20888a

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

src/frontend/apps/web/vitest.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default defineConfig({
66
plugins: [react()],
77
test: {
88
environment: 'jsdom',
9-
testTimeout: 10000,
9+
testTimeout: 25000,
1010
setupFiles: './vitest-setup.ts',
1111
globals: true,
1212
exclude: [

src/frontend/turbo.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
{
22
"$schema": "https://turbo.build/schema.json",
33
"cacheDir": ".turbo/cache",
4+
"globalEnv": [
5+
"NEXT_PUBLIC_REAL_BASE_URL",
6+
"NEXT_PUBLIC_MODE",
7+
"NEXT_PUBLIC_BASE_URL",
8+
"NEXT_PUBLIC_GATEWAY_SERVER_PORT",
9+
"NEXT_PUBLIC_AUTH_SERVER_PORT",
10+
"NEXT_PUBLIC_STOCK_SERVER_PORT",
11+
"NEXT_PUBLIC_FILE_SERVER_PORT",
12+
"NEXT_PUBLIC_CHAT_SERVER1_PORT",
13+
"NEXT_PUBLIC_CHAT_SERVER2_PORT",
14+
"NEXT_PUBLIC_HISTORY_SERVER_PORT",
15+
"NEXT_PUBLIC_WORKSPACE_SERVER_PORT",
16+
"NEXT_PUBLIC_PUSH_SERVER_PORT",
17+
"NEXT_PUBLIC_STATE_SERVER_PORT",
18+
"NEXT_PUBLIC_SIGNALING_SERVER_PORT"
19+
],
420
"ui": "tui",
521
"tasks": {
622
"build": {

0 commit comments

Comments
 (0)