파일 컴포넌트 분리

This commit is contained in:
kjs
2025-09-05 21:52:19 +09:00
parent e0fd624078
commit d73be8a4d3
21 changed files with 1999 additions and 556 deletions
+18
View File
@@ -0,0 +1,18 @@
// multer 패키지 설치 스크립트
const { exec } = require("child_process");
console.log("📦 multer 패키지 설치 중...");
exec("npm install multer @types/multer", (error, stdout, stderr) => {
if (error) {
console.error("❌ 설치 실패:", error);
return;
}
if (stderr) {
console.log("⚠️ 경고:", stderr);
}
console.log("✅ multer 설치 완료");
console.log(stdout);
});