fromis_9/frontend/vite.config.js

32 lines
737 B
JavaScript
Raw Normal View History

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