From 72754f59496776c697d2c23906d8e617845eeb23 Mon Sep 17 00:00:00 2001 From: "theis.gaedigk" Date: Sat, 2 Aug 2025 02:13:04 +0200 Subject: [PATCH] Update frontend/vite.config.ts --- frontend/vite.config.ts | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index 59fc93c..abd96a4 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -1,13 +1,12 @@ import { defineConfig } from "vite"; import tailwindcss from "@tailwindcss/vite"; + export default defineConfig({ plugins: [tailwindcss()], - server: { + server: { host: "0.0.0.0", - allowedHosts: "weather.the1s.de", + allowedHosts: ["weather.the1s.de"], port: 7002, - watch: { - usePolling: true, - }, + watch: { usePolling: true }, }, });