Skip to content

Commit 179b177

Browse files
jackfromeastpatak-dev
authored andcommitted
fix: avoid DOM Clobbering gadget in getRelativeUrlFromDocument (#18115)
1 parent 6820bb3 commit 179b177

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
@@ -1133,7 +1133,7 @@ const getRelativeUrlFromDocument = (relativePath: string, umd = false) =>
11331133
getResolveUrl(
11341134
`'${escapeId(partialEncodeURIPath(relativePath))}', ${
11351135
umd ? `typeof document === 'undefined' ? location.href : ` : ''
1136-
}document.currentScript && document.currentScript.src || document.baseURI`,
1136+
}document.currentScript && document.currentScript.tagName.toUpperCase() === 'SCRIPT' && document.currentScript.src || document.baseURI`,
11371137
)
11381138

11391139
const getFileUrlFromFullPath = (path: string) =>

0 commit comments

Comments
 (0)