Skip to content

Commit

Permalink
fix: backport #18115, DOM Clobbering in
Browse files Browse the repository at this point in the history
  • Loading branch information
jackfromeast authored and patak-dev committed Sep 17, 2024
1 parent a6da450 commit 2ddd854
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vite/src/node/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1005,7 +1005,7 @@ const getRelativeUrlFromDocument = (relativePath: string, umd = false) =>
getResolveUrl(
`'${relativePath}', ${
umd ? `typeof document === 'undefined' ? location.href : ` : ''
}document.currentScript && document.currentScript.src || document.baseURI`
}document.currentScript && document.currentScript.tagName.toUpperCase() === 'SCRIPT' && document.currentScript.src || document.baseURI`
)

const relativeUrlMechanisms: Record<
Expand Down

0 comments on commit 2ddd854

Please sign in to comment.