1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-31 13:47:02 +02:00

fix: Don't check version when starting up in dev mode

This commit is contained in:
Christopher Kolstad 2021-02-19 11:16:35 +01:00
parent b83387a84a
commit c2db551252
No known key found for this signature in database
GPG Key ID: 559ACB0E3DB5538A
2 changed files with 4 additions and 1 deletions

View File

@ -54,7 +54,7 @@ class VersionService {
return { return {
current: this.current, current: this.current,
latest: this.latest || {}, latest: this.latest || {},
isLatest: this.isLatest || false, isLatest: this.isLatest,
}; };
} }
} }

View File

@ -16,4 +16,7 @@ unleash.start({
session: { session: {
db: true db: true
}, },
versionCheck: {
enable: false,
}
}); });