fix: correct allowedHosts configuration format in vite.config.ts

This commit is contained in:
2026-04-27 01:06:54 -04:00
parent b4a2968399
commit 81e2a7828f

View File

@@ -4,7 +4,7 @@ import react from "@vitejs/plugin-react";
export default defineConfig({ export default defineConfig({
plugins: [react()], plugins: [react()],
server: { server: {
allowedHosts: "beepc", allowedHosts: ["beepc"],
host: "0.0.0.0", host: "0.0.0.0",
port: 5173, port: 5173,
proxy: { proxy: {