From 1047b96c0f477380ed5610b3de3328636aa96031 Mon Sep 17 00:00:00 2001 From: ThisBirchWood Date: Thu, 23 Jan 2025 12:27:03 +0000 Subject: [PATCH] Fixed allowed hosts issue --- frontend/vite.config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index 8b0f57b..ab36821 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -4,4 +4,7 @@ import react from '@vitejs/plugin-react' // https://vite.dev/config/ export default defineConfig({ plugins: [react()], + server: { + allowedHosts: ['frontend'], + }, })