diff --git a/frontend/vite.config.mts b/frontend/vite.config.mts index 5844ca7..c2af426 100644 --- a/frontend/vite.config.mts +++ b/frontend/vite.config.mts @@ -3,4 +3,10 @@ import tsConfigPaths from "vite-tsconfig-paths"; export default defineConfig({ plugins: [tsConfigPaths()], + server: { + hmr: { + host: 'localhost', + protocol: 'ws', + }, + }, });