mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:51:09 +08:00
FIX
This commit is contained in:
parent
0a50d7d86d
commit
b4857c7022
@ -55,16 +55,15 @@ const useLocation = async path => {
|
||||
|
||||
app.use(express.static(path));
|
||||
|
||||
const freePort = await getPort();
|
||||
const port = await getPort();
|
||||
|
||||
return new Promise((resolve, reject) => {
|
||||
const server = app.listen(freePort, e => {
|
||||
const server = app.listen(port, e => {
|
||||
if (e) {
|
||||
reject(e);
|
||||
}
|
||||
|
||||
const { address, port } = server.address();
|
||||
const result = typeof address === 'string' ? address : `http://localhost:${port}/iframe.html`;
|
||||
const result = `http://localhost:${port}/iframe.html`;
|
||||
|
||||
console.log(`connecting to: ${result}`);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user