mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
14 lines
347 B
TypeScript
14 lines
347 B
TypeScript
const resolveCurrentAppVersion = (): string => {
|
|
const configuredVersion = import.meta.env.VITE_APP_VERSION;
|
|
|
|
if (typeof configuredVersion === 'string' && configuredVersion.trim().length > 0) {
|
|
return configuredVersion.trim();
|
|
}
|
|
|
|
return '0.0.0';
|
|
};
|
|
|
|
const currentAppVersion = resolveCurrentAppVersion();
|
|
|
|
export { currentAppVersion };
|