Update frontend/vite.config.ts

This commit is contained in:
2025-08-02 02:13:04 +02:00
parent c1e96eb7d2
commit 72754f5949

View File

@@ -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 },
},
});