This commit is contained in:
Rizky 2024-08-15 21:57:30 +07:00
parent f6b51403ed
commit 453c7de252
1 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
import { code } from "../ws/sync/code/code"; import { code } from "../ws/sync/code/code";
import { initFrontEnd } from "../ws/sync/code/parts/init/frontend"; import { initFrontEnd } from "../ws/sync/code/parts/init/frontend";
import { initServer } from "../ws/sync/code/parts/init/server";
export const _ = { export const _ = {
url: "/rebuild/:id_site", url: "/rebuild/:id_site",
@ -9,7 +10,7 @@ export const _ = {
// delete frontend[id_site]; // delete frontend[id_site];
// delete server[id_site]; // delete server[id_site];
await initFrontEnd(root, id_site, true); await initFrontEnd(root, id_site, true);
// await initServer(root, id_site, true); await initServer(root, id_site, true);
// await initTypings(root, id_site, true); // await initTypings(root, id_site, true);
return "ok"; return "ok";