Skip to content

Commit 5caa08f

Browse files
jackfromeastpatak-dev
authored andcommitted
fix: avoid DOM Clobbering gadget in getRelativeUrlFromDocument (#18115)
1 parent 03f1033 commit 5caa08f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/vite/src/node/build.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1094,7 +1094,7 @@ const getRelativeUrlFromDocument = (relativePath: string, umd = false) =>
10941094
getResolveUrl(
10951095
`'${escapeId(relativePath)}', ${
10961096
umd ? `typeof document === 'undefined' ? location.href : ` : ''
1097-
}document.currentScript && document.currentScript.src || document.baseURI`,
1097+
}document.currentScript && document.currentScript.tagName.toUpperCase() === 'SCRIPT' && document.currentScript.src || document.baseURI`,
10981098
)
10991099

11001100
const getFileUrlFromFullPath = (path: string) =>

0 commit comments

Comments
 (0)