Files
litlyx/dashboard/composables/useSelfhosted.ts
2025-01-17 17:40:20 +01:00

7 lines
151 B
TypeScript

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