We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 469e7f7 commit d0f0600Copy full SHA for d0f0600
datex-bindings/dom-utils.ts
@@ -777,7 +777,7 @@ export class DOMUtils {
777
778
// src path with import map specifier
779
// TODO: currently only enabled for specific folder names to keep backwards compatibility, this should be enabled for all paths
780
- else if (attr === "src" && typeof val == "string" && (val.startsWith("common/") || val.startsWith("frontend/"))) {
+ else if ((attr === "src" || attr === "href") && typeof val == "string" && (val.startsWith("common/") || val.startsWith("frontend/"))) {
781
element.setAttribute(attr, `/@uix/src/${val}`);
782
}
783
0 commit comments