이력테이블 기준 컬럼 설정 기능

This commit is contained in:
kjs
2025-10-27 11:41:30 +09:00
parent 5fdefffd26
commit a3bfcdf2d8
15 changed files with 26 additions and 379 deletions

View File

@@ -67,8 +67,6 @@ export class PerformanceOptimizer {
static initialize(options: Partial<OptimizationOptions> = {}): void {
this.options = { ...DEFAULT_OPTIMIZATION_OPTIONS, ...options };
console.log("⚡ 성능 최적화 시스템 초기화:", this.options);
// 메모리 사용량 모니터링 (개발 모드에서만)
if (process.env.NODE_ENV === "development") {
this.startMemoryMonitoring();
@@ -463,5 +461,4 @@ export class PerformanceOptimizer {
// 자동 초기화
if (typeof window !== "undefined") {
PerformanceOptimizer.initialize();
console.log("⚡ 성능 최적화 시스템이 초기화되었습니다.");
}