mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-09-18 09:29:24 +00:00
7 lines
242 B
TypeScript
7 lines
242 B
TypeScript
![]() |
import { useAppConfig } from '../hooks/useAppConfig';
|
||
|
|
||
|
// Get base URL from app config with fallback
|
||
|
export const getBaseUrl = (): string => {
|
||
|
const { config } = useAppConfig();
|
||
|
return config?.baseUrl || 'https://demo.stirlingpdf.com';
|
||
|
};
|