mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:41:08 +08:00
FIX try using localhost, since it seems the server returned address doesn't seem to be accessible in CI
This commit is contained in:
parent
9054c902ac
commit
0a50d7d86d
@ -64,11 +64,11 @@ const useLocation = async path => {
|
||||
}
|
||||
|
||||
const { address, port } = server.address();
|
||||
const result = typeof address === 'string' ? address : `http://localhost:${port}/iframe.html`;
|
||||
|
||||
resolve([
|
||||
typeof address === 'string' ? address : `http://${address}:${port}/iframe.html`,
|
||||
server.close.bind(server),
|
||||
]);
|
||||
console.log(`connecting to: ${result}`);
|
||||
|
||||
resolve([result, server.close.bind(server)]);
|
||||
});
|
||||
});
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user