fixed dev server websocket

This commit is contained in:
Logan Jones
2025-04-08 14:50:46 -05:00
parent 8998c14954
commit b8c8e05023
+6
View File
@@ -3,4 +3,10 @@ import tsConfigPaths from "vite-tsconfig-paths";
export default defineConfig({
plugins: [tsConfigPaths()],
server: {
hmr: {
host: 'localhost',
protocol: 'ws',
},
},
});