feat(ai-character): 리소스 관리 기반 정비

This commit is contained in:
Yu Sung
2026-08-01 01:30:24 +09:00
parent 55ba0df77a
commit a1cae336d9
73 changed files with 5162 additions and 816 deletions

View File

@@ -7,5 +7,5 @@ let worker: ReturnType<typeof setupWorker> | null = null;
export async function startMockWorker(): Promise<void> {
worker ??= setupWorker(...createMockHandlers(createMockStore(), getRuntimeEnv().apiBaseUrl));
await worker.start({ onUnhandledRequest: "error" });
await worker.start({ onUnhandledRequest: "error", quiet: true });
}