Files
litlyx/dashboard/composables/useSelfhosted.ts
2024-12-05 17:30:28 +01:00

7 lines
115 B
TypeScript

const app = useRuntimeConfig();
export function useSelfhosted() {
return app.public.SELFHOSTED === 'TRUE';
}