import { defineConfig } from "vite"; import react from "@vitejs/plugin-react"; export default defineConfig({ plugins: [react()], server: { host: true, port: 80, allowedHosts: true, proxy: { // 개발 모드 (localhost:3000) "/api": { target: "http://localhost:3000", changeOrigin: true, }, "/docs": { target: "http://localhost:3000", changeOrigin: true, }, // 배포 모드 (사용 시 위를 주석처리) // "/api": { // target: "http://fromis9-backend:3000", // changeOrigin: true, // }, // "/docs": { // target: "http://fromis9-backend:3000", // changeOrigin: true, // }, }, }, });