fix selfhost

This commit is contained in:
Emily
2025-01-17 16:44:22 +01:00
parent b59eea47e9
commit fb89c87489
7 changed files with 27 additions and 8 deletions

View File

@@ -3,5 +3,5 @@
const app = useRuntimeConfig();
export function useSelfhosted() {
return app.public.SELFHOSTED === 'TRUE';
return app.public.SELFHOSTED === 'TRUE' || app.public.SELFHOSTED !== 'true';
}