From 3353712bc1be89e9c239eeacbe51c163135fdeb7 Mon Sep 17 00:00:00 2001 From: Peter Johanson Date: Thu, 27 Oct 2022 03:53:28 +0000 Subject: [PATCH] fix(docs): `npm start` to work from Docker. * Listen on 0.0.0.0 so testing docs within our container works properly with port forwarding. --- docs/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/package.json b/docs/package.json index a6582472..7c933b03 100644 --- a/docs/package.json +++ b/docs/package.json @@ -3,7 +3,7 @@ "version": "0.0.0", "private": true, "scripts": { - "start": "docusaurus start", + "start": "docusaurus start --host 0.0.0.0", "build": "docusaurus build", "serve": "docusaurus serve", "swizzle": "docusaurus swizzle",