From e2be5ea5b81d8118c8a0b3e9ba3edd5c77c1a759 Mon Sep 17 00:00:00 2001 From: Auke Steenman Date: Mon, 21 Jul 2025 19:11:29 +0200 Subject: [PATCH] fix: Updated vite config to support docker port forwarding --- vite.config.ts | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/vite.config.ts b/vite.config.ts index 8b0f57b..1bc9cfe 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,7 +1,11 @@ -import { defineConfig } from 'vite' -import react from '@vitejs/plugin-react' +import { defineConfig } from 'vite'; +import react from '@vitejs/plugin-react'; // https://vite.dev/config/ export default defineConfig({ plugins: [react()], -}) + server: { + host: '0.0.0.0', + port: 5173, + }, +});