diff --git a/front/dist/iframe.html b/front/dist/iframe.html
index c8fafb4b..7f48db73 100644
--- a/front/dist/iframe.html
+++ b/front/dist/iframe.html
@@ -10,6 +10,7 @@
const urlParams = new URLSearchParams(window.location.search);
const scriptUrl = urlParams.get('script');
const script = document.createElement('script');
+ script.type = "module";
script.src = scriptUrl;
document.head.append(script);