Files
litlyx/dashboard/composables/useSelfhosted.ts
2025-01-17 18:07:53 +01:00

7 lines
173 B
TypeScript

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