ci 수정
CI / test (push) Successful in 4m50s
CI / e2e (push) Has been skipped
CI / pr_and_merge (push) Successful in 1m40s

This commit is contained in:
2025-12-07 19:46:56 +09:00
parent 243083261f
commit 4bb4c83054
9 changed files with 21 additions and 12 deletions
+2 -1
View File
@@ -899,7 +899,8 @@ function EditorPageInner() {
const titleRaw = projectConfig?.title;
const title = (typeof titleRaw === "string" ? titleRaw.trim() : "") || "제목 없음";
const intervalMs = 20000;
const intervalEnv = process.env.NEXT_PUBLIC_EDITOR_SERVER_AUTOSAVE_MS;
const intervalMs = intervalEnv ? Number(intervalEnv) || 20000 : 20000;
let cancelled = false;
const saveOnce = async () => {