From f5456d2866741899699dc3d122ba0943ca041a5e Mon Sep 17 00:00:00 2001 From: itqop Date: Tue, 30 Dec 2025 19:04:06 +0300 Subject: [PATCH] fix hosts --- frontend/vite.config.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index 0351b36..ecb07c2 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -7,6 +7,12 @@ export default defineConfig({ server: { host: true, port: 5173, + allowedHosts: [ + 'itcloud.itqop.dev', + 'localhost', + '127.0.0.1', + '192.168.1.8', // твой LAN-IP + ], }, build: { outDir: '../static',