From ff1baa9830939006395751d470ddc9edf3a5fd65 Mon Sep 17 00:00:00 2001 From: James Taylor Date: Fri, 11 Oct 2024 12:02:03 +0100 Subject: [PATCH] Update vscode tasks Start Gatsby so it can be accessed from outside the devcontainer Signed-off-by: James Taylor --- .vscode/tasks.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 3576303c..aee8e809 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -6,7 +6,7 @@ { "label": "Serve (Development)", "type": "shell", - "command": "npm run develop", + "command": "npm run develop -- --host 0.0.0.0", "group": { "kind": "build" }, @@ -16,7 +16,7 @@ { "label": "Serve", "type": "shell", - "command": "npm run build && npm run serve", + "command": "npm run build && npm run serve -- --host 0.0.0.0", "group": { "kind": "build" },