ComfyUI/web/extensions/comfyui_exit/exit_button.js
2026-02-18 20:57:28 +11:00

25 lines
584 B
JavaScript
Vendored

import { app } from "../../scripts/app.js";
app.registerExtension({
name: "comfyui.exit",
commands: [
{
id: "Comfy.Exit",
label: "Exit",
menubarLabel: "Exit",
icon: "pi pi-power-off",
function: async () => {
if (confirm("Shut down ComfyUI?")) {
await fetch("/shutdown", { method: "POST" }).catch(() => {});
}
}
}
],
menuCommands: [
{
path: ["File"],
commands: ["Comfy.Exit"]
}
]
});