diff --git a/dev/index.html b/dev/index.html
index 66ddf3ff..c339612b 100644
--- a/dev/index.html
+++ b/dev/index.html
@@ -45,9 +45,9 @@
Connector:
@@ -113,7 +113,7 @@
const code = await specToModule(spec, { ...options, imports });
const blob = new Blob([code], { type: 'text/javascript' });
const url = URL.createObjectURL(blob);
- return (await import(url /* @vite-ignore */)).default;
+ return (await import(/* @vite-ignore */ url)).default;
}