From 993cabdde0281165f77efef2d73acea2b98c79dd Mon Sep 17 00:00:00 2001 From: Bartek Szopka Date: Wed, 3 Apr 2024 18:59:14 +0200 Subject: [PATCH] Fix access to localhost server on CircleCI --- snapshots.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snapshots.js b/snapshots.js index ac45e7ecd3..1ea4c6423d 100644 --- a/snapshots.js +++ b/snapshots.js @@ -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