From 06514e7bd48cb3a88b57e84b98a081b6c577de04 Mon Sep 17 00:00:00 2001 From: Johnny322 Date: Sun, 8 Feb 2026 13:02:56 +0100 Subject: [PATCH] Add more context to vite-conmfig --- vite.config.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/vite.config.ts b/vite.config.ts index 91fc6df..8171e12 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -5,6 +5,11 @@ export default defineConfig({ plugins: [vue()], assetsInclude: ['**/*.mp3'], server: { - port: 5173 + host: '0.0.0.0', // crucial! allows container/network access + port: 5173, + hmr: { + host: 'jeopardy.toppit.net', // your public hostname + protocol: 'ws', + } } })