mirror of
https://github.com/outbackdingo/openapi-ui.git
synced 2026-01-27 10:19:49 +00:00
8 lines
243 B
TypeScript
8 lines
243 B
TypeScript
/* eslint-disable no-underscore-dangle */
|
|
export const getBasePrefix = (isFederation?: boolean) => {
|
|
if (isFederation) {
|
|
return '/openapi-ui-federation'
|
|
}
|
|
return window._env_.BASEPREFIX || import.meta.env.BASE_URL || '/openapi-ui'
|
|
}
|