From 8c25a3d8aff6c8fdae3004a1118fece71a2bb2a3 Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Sun, 30 Jun 2024 20:27:59 -0600 Subject: [PATCH] refactor: add preview vite --- astro-ssr/astro.config.mjs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/astro-ssr/astro.config.mjs b/astro-ssr/astro.config.mjs index f18efa9..aa69783 100644 --- a/astro-ssr/astro.config.mjs +++ b/astro-ssr/astro.config.mjs @@ -16,5 +16,9 @@ export default defineConfig({ ssr: { noExternal: ['path-to-regexp'], }, + preview: { + port: 3000, + host: true + } } });