파일 컴포넌트 분리
This commit is contained in:
@@ -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);
|
||||
});
|
||||
Reference in New Issue
Block a user