ci 수정
This commit is contained in:
@@ -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 () => {
|
||||
|
||||
Reference in New Issue
Block a user