Skip to content

Commit e812716

Browse files
jackfromeastpatak-dev
authored andcommitted
fix: avoid DOM Clobbering gadget in getRelativeUrlFromDocument (#18115)
1 parent b901438 commit e812716

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
@@ -1100,7 +1100,7 @@ const getRelativeUrlFromDocument = (relativePath: string, umd = false) =>
11001100
getResolveUrl(
11011101
`'${escapeId(relativePath)}', ${
11021102
umd ? `typeof document === 'undefined' ? location.href : ` : ''
1103-
}document.currentScript && document.currentScript.src || document.baseURI`,
1103+
}document.currentScript && document.currentScript.tagName.toUpperCase() === 'SCRIPT' && document.currentScript.src || document.baseURI`,
11041104
)
11051105

11061106
const getFileUrlFromFullPath = (path: string) =>

0 commit comments

Comments
 (0)