diff --git a/modules/ui_gradio_extensions.py b/modules/ui_gradio_extensions.py index ed57c1e98..b952762cc 100644 --- a/modules/ui_gradio_extensions.py +++ b/modules/ui_gradio_extensions.py @@ -1,4 +1,5 @@ import os +import re import gradio as gr from modules import localization, shared, scripts, util @@ -49,12 +50,19 @@ def css_html(): return head +re_preconnect = re.compile(rb']*)?/?>') + + def reload_javascript(): js = javascript_html() css = css_html() def template_response(*args, **kwargs): res = shared.GradioTemplateResponseOriginal(*args, **kwargs) + + # remove preconnects + res.body = re_preconnect.sub(b'', res.body) + res.body = res.body.replace(b'', f'{js}'.encode("utf8")) res.body = res.body.replace(b'', f'{css}'.encode("utf8")) res.init_headers()