Skip to content

Commit 49c385e

Browse files
committed
build: 웹 빌드 의존성과 postbuild 인프라 정리
1 parent a6c67d2 commit 49c385e

4 files changed

Lines changed: 626 additions & 0 deletions

File tree

.gitignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Dependencies
2+
node_modules/
3+
**/node_modules/
4+
5+
# Environment variables
6+
7+
# Build outputs
8+
dist/
9+
**/dist/
10+
11+
apps/api/public/
12+
13+
# Logs
14+
.DS_Store
15+
*.log
16+
17+
# IDE
18+
19+
# OS
20+
21+
# TypeScript
22+
23+
# Testing
24+
25+
# Misc
26+
27+
# ETC

apps/web/package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,9 @@
77
"build": "tsc && vite build",
88
"preview": "vite preview",
99
"typecheck": "tsc --noEmit"
10+
},
11+
"devDependencies": {
12+
"typescript": "^5.9.2",
13+
"vite": "^5.4.19"
1014
}
1115
}

0 commit comments

Comments
 (0)