mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-01-30 21:09:53 +00:00
15 lines
348 B
TypeScript
15 lines
348 B
TypeScript
module.exports = async function () {
|
|
global.ResizeObserver = class ResizeObserver {
|
|
observe() {}
|
|
unobserve() {}
|
|
disconnect() {}
|
|
};
|
|
|
|
const { nop } = require("./utils/nopProxy");
|
|
global.enableWebGLCanvas = nop;
|
|
|
|
HTMLCanvasElement.prototype.getContext = nop;
|
|
|
|
localStorage["Comfy.Settings.Comfy.Logging.Enabled"] = "false";
|
|
};
|