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:
parent
b83387a84a
commit
c2db551252
@ -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,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -16,4 +16,7 @@ unleash.start({
|
|||||||
session: {
|
session: {
|
||||||
db: true
|
db: true
|
||||||
},
|
},
|
||||||
|
versionCheck: {
|
||||||
|
enable: false,
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user