mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:31:27 +08:00
fix url
This commit is contained in:
parent
6a955f2502
commit
b4a83e15f9
@ -231,8 +231,8 @@ const getEventSourceUrl = (event: MessageEvent) => {
|
||||
|
||||
if (frame && remainder.length === 0) {
|
||||
const src = frame.getAttribute('src');
|
||||
const { origin, pathname } = new URL(src, document.location);
|
||||
return origin + pathname;
|
||||
const { protocol, host, pathname } = new URL(src, document.location);
|
||||
return `${protocol}//${host}${pathname}`;
|
||||
}
|
||||
|
||||
if (remainder.length > 0) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user