Support WEBP outputs

This commit is contained in:
Olivia Godone-Maresca
2023-02-18 22:37:34 -05:00
parent e7a2dfa57f
commit c2c33b7df1
5 changed files with 10 additions and 8 deletions

View File

@ -31,6 +31,7 @@ const PLUGINS = {
OUTPUTS_FORMATS: new ServiceContainer(
function png() { return (reqBody) => new SD.RenderTask(reqBody) }
, function jpeg() { return (reqBody) => new SD.RenderTask(reqBody) }
, function webp() { return (reqBody) => new SD.RenderTask(reqBody) }
),
}
PLUGINS.OUTPUTS_FORMATS.register = function(...args) {