This commit is contained in:
Rizky 2024-08-01 18:01:12 +07:00
parent 88cf1b9875
commit 13e3b555e6
1 changed files with 3 additions and 1 deletions

View File

@ -100,7 +100,9 @@ export const initFrontEnd = async (
clearTimeout(fe.timeout); clearTimeout(fe.timeout);
fe.timeout = setTimeout(async () => { fe.timeout = setTimeout(async () => {
const build_timeout = setTimeout(async () => { const build_timeout = setTimeout(async () => {
console.log(`Build unfinished ${id_site} ${filename}`); console.log(
`Build front-end unfinished ${id_site} ${filename}`
);
await fe.ctx.dispose(); await fe.ctx.dispose();
fe.ctx = await initBuildCtx({ id_site, root }); fe.ctx = await initBuildCtx({ id_site, root });
}, 3000); }, 3000);