From 486061f7225b6d512d32763c672cbf5be68d4eb0 Mon Sep 17 00:00:00 2001 From: aminnairi <18418459+aminnairi@users.noreply.github.com> Date: Sat, 16 Dec 2023 11:47:07 +0100 Subject: [PATCH] added a section for the server configuration in the client app --- template/client/vite.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/template/client/vite.config.ts b/template/client/vite.config.ts index e8bbaf2..4bd8cc4 100644 --- a/template/client/vite.config.ts +++ b/template/client/vite.config.ts @@ -3,9 +3,9 @@ import react from "@vitejs/plugin-react"; export default defineConfig({ plugins: [ - react() + react(), ], -}); server: { + server: { port: 8000, host: "0.0.0.0" }