From 79f32024dafe91cd941e6f4ea4a15ae36dc8e917 Mon Sep 17 00:00:00 2001 From: azeeee05 Date: Fri, 24 Jul 2026 11:50:10 +0530 Subject: [PATCH] feat: configure Vite with React, Tailwind CSS, and allowed development hosts --- frontend/vite.config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index 0616e59..a67019f 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -4,4 +4,7 @@ import tailwindcss from '@tailwindcss/vite' export default defineConfig({ plugins: [react(), tailwindcss()], + server: { + allowedHosts: ['pdf-dev.maskantech.in'], + }, })