link-stack/packages/leafcutter-ui/lib/utils.ts

10 lines
193 B
TypeScript
Raw Normal View History

2024-05-09 07:42:44 +02:00
export const getBasePath = (): string => {
const basePath = process.env.NEXT_PUBLIC_LEAFCUTTER_BASE_PATH;
if (basePath && basePath !== "") {
return `${basePath}`;
}
return "";
};