1
0
forked from baron/baron-sso

fix: use vite preview in staging to support api proxy in frontends

This commit is contained in:
2026-04-06 11:47:33 +09:00
parent 583755c189
commit aaa3dc2fb9
4 changed files with 29 additions and 9 deletions

View File

@@ -18,8 +18,8 @@ if [ "${1:-}" = "--print-mode" ]; then
fi
if [ "$mode" = "production" ]; then
echo "Running in production mode..."
exec sh -c "npm run build && serve -s dist -l 5173"
echo "Running in production mode with Vite preview..."
exec sh -c "npm run build && npm run preview -- --host 0.0.0.0"
fi
echo "Running in development mode..."

View File

@@ -1,13 +1,23 @@
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"],
allowedHosts: ["sadmin.hmac.kr", "localhost", "172.16.10.176", "127.0.0.1"],
proxy: {
"/api": {
target: process.env.API_PROXY_TARGET || "http://localhost:3000",
changeOrigin: true,
},
},
},
preview: {
host: "0.0.0.0",
port: 5173,
allowedHosts: ["sadmin.hmac.kr", "localhost", "172.16.10.176", "127.0.0.1"],
proxy: {
"/api": {
target: process.env.API_PROXY_TARGET || "http://localhost:3000",

View File

@@ -18,8 +18,8 @@ if [ "${1:-}" = "--print-mode" ]; then
fi
if [ "$mode" = "production" ]; then
echo "Running in production mode..."
exec sh -c "npm run build && serve -s dist -l 5173"
echo "Running in production mode with Vite preview..."
exec sh -c "npm run build && npm run preview -- --host 0.0.0.0"
fi
echo "Running in development mode..."

View File

@@ -1,12 +1,22 @@
import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
host: "0.0.0.0", // Ensure binding to all interfaces
allowedHosts: ["sdev.hmac.kr", "localhost", "172.16.10.176"],
host: "0.0.0.0",
allowedHosts: ["sdev.hmac.kr", "localhost", "172.16.10.176", "127.0.0.1"],
proxy: {
"/api": {
target: process.env.API_PROXY_TARGET || "http://localhost:3000",
changeOrigin: true,
},
},
},
preview: {
host: "0.0.0.0",
port: 5173,
allowedHosts: ["sdev.hmac.kr", "localhost", "172.16.10.176", "127.0.0.1"],
proxy: {
"/api": {
target: process.env.API_PROXY_TARGET || "http://localhost:3000",