fix self-hosting

This commit is contained in:
Carl-Gerhard Lindesvärd
2025-10-22 11:38:37 +02:00
parent 9790ba8937
commit 42d0fb8572
11 changed files with 202 additions and 38 deletions

View File

@@ -24,7 +24,7 @@ export function getIsCluster() {
}
export function getIsSelfHosting() {
return process.env.VITE_SELF_HOSTED === 'true' || !!process.env.SELF_HOSTED;
return process.env.SELF_HOSTED === 'true' || !!process.env.SELF_HOSTED;
}
export function getIsDry() {