mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2026-02-17 13:52:14 +01:00
# Description of Changes Move frontend code into `core` folder and add infrastructure for `proprietary` folder to include premium, non-OSS features
7 lines
206 B
TypeScript
7 lines
206 B
TypeScript
import { useAppConfig } from '@app/contexts/AppConfigContext';
|
|
|
|
export const useBaseUrl = (): string => {
|
|
const { config } = useAppConfig();
|
|
return config?.baseUrl || 'https://demo.stirlingpdf.com';
|
|
};
|