Files
litlyx/dashboard/composables/useSelfhosted.ts
2025-01-17 16:44:22 +01:00

7 lines
151 B
TypeScript

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