Restrict sandbox port to local
This commit is contained in:
parent
d63d314406
commit
bf6b9c7311
1 changed files with 1 additions and 1 deletions
|
@ -24,5 +24,5 @@ export default async function startSandbox() {
|
||||||
});
|
});
|
||||||
|
|
||||||
// eslint-disable-next-line no-console
|
// eslint-disable-next-line no-console
|
||||||
sandbox.listen(port, () => console.log(`Sandbox listening on port ${port}.`));
|
sandbox.listen(port, 'localhost', () => console.log(`Sandbox listening on port ${port}.`));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue