Skip to content

Commit

Permalink
Update qwikloader.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickJS authored May 16, 2024
1 parent a8d17f0 commit 5fec1c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/qwik/src/qwikloader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export const qwikLoader = (
const container = element.closest('[q\\:container]')! as QContainerElement;
const qVersion = container[getAttribute]('q:version') || 'unknown';
const qManifest = container[getAttribute]('q:manifest-hash') || 'dev';
const base = container[getAttribute]('q:base');
const qBase = container[getAttribute]('q:base');
let base = qBase;
if (!base || base === '/') {
base = doc.baseURI;
Expand Down

0 comments on commit 5fec1c1

Please sign in to comment.