Skip to content

Commit

Permalink
Fix access to localhost server on CircleCI (#5045)
Browse files Browse the repository at this point in the history
  • Loading branch information
bartaz committed Apr 3, 2024
1 parent 8686b8e commit 481aed5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snapshots.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const PORT = process.env.PORT || 8101;

module.exports = async () => {
const {default: GetSiteUrls} = await import('get-site-urls');
let links = await GetSiteUrls(`http://localhost:${PORT}/`);
let links = await GetSiteUrls(`http://0.0.0.0:${PORT}/`);
let urls = [];

links = links.found
Expand Down

0 comments on commit 481aed5

Please sign in to comment.