From 924dd05b5ed8b8cac2350bc9e73fdc369cc720f8 Mon Sep 17 00:00:00 2001 From: Yuhei Yasuda Date: Fri, 5 Jan 2024 04:19:59 +0900 Subject: [PATCH] set `--host` for `astro dev` --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c939629..464043a 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "type": "module", "scripts": { "dev": "concurrently --raw \"npm:dev:*\"", - "dev:astro": "astro dev", + "dev:astro": "astro dev --host", "dev:css": "chokidar \"src/styles/**/*.css\" --command \"touch tailwind.config.cjs\" --debounce 0 --silent", "build": "astro check && tsc && astro build", "preview": "astro preview",