import react from "@vitejs/plugin-react"; import { defineConfig } from "vite"; // https://vite.dev/config/ export default defineConfig({ plugins: [react()], envPrefix: ["VITE_", "USERFRONT_"], server: { host: "0.0.0.0", allowedHosts: ["sadmin.hmac.kr", "localhost", "172.16.10.176"], proxy: { "/api": { target: process.env.API_PROXY_TARGET || "http://localhost:3000", changeOrigin: true, }, }, }, });