From 2127a105ca7d89565f6a5c36dc627e3398a3f1b3 Mon Sep 17 00:00:00 2001 From: Simon Vrachliotis Date: Sun, 13 Aug 2023 18:55:15 +1000 Subject: [PATCH] Add --host flag to astro template (#516) --- .changeset/sixty-squids-applaud.md | 5 +++++ templates/astro/package.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/sixty-squids-applaud.md diff --git a/.changeset/sixty-squids-applaud.md b/.changeset/sixty-squids-applaud.md new file mode 100644 index 000000000..58077346a --- /dev/null +++ b/.changeset/sixty-squids-applaud.md @@ -0,0 +1,5 @@ +--- +'@keystatic/templates-astro': patch +--- + +Add --host flag to astro dev command + version updates diff --git a/templates/astro/package.json b/templates/astro/package.json index d4d689f8b..be3d3e691 100644 --- a/templates/astro/package.json +++ b/templates/astro/package.json @@ -3,7 +3,7 @@ "version": "0.0.7", "license": "MIT", "scripts": { - "dev": "astro dev", + "dev": "astro dev --host 127.0.0.1", "start": "astro dev", "build": "astro build", "preview": "astro preview",