1
0
forked from baron/baron-sso

조직도 줌 레벨 상향

This commit is contained in:
2026-05-18 18:06:13 +09:00
parent 0b54992309
commit 9112c4fb36
44 changed files with 1000 additions and 1414 deletions

View File

@@ -1,13 +1,18 @@
import { defineConfig, mergeConfig } from "vite";
import { commonViteConfig, getAllowedHosts } from "../common/config/vite.base";
import {
commonViteConfig,
getAllowedHosts,
hostFromUrl,
} from "../common/config/vite.base";
const buildOutDir =
process.env.DEVFRONT_BUILD_OUT_DIR ?? "/tmp/baron-sso-devfront-dist";
const devfrontHost = hostFromUrl(process.env.DEVFRONT_URL);
const allowedHosts = getAllowedHosts(
["sdev.hmac.kr", "localhost", "172.16.10.176", "127.0.0.1"],
process.env.DEVFRONT_URL,
process.env.DEVFRONT_ALLOWED_HOSTS
devfrontHost,
process.env.DEVFRONT_ALLOWED_HOSTS,
);
export default defineConfig(
@@ -39,5 +44,5 @@ export default defineConfig(
},
},
},
})
}),
);