[Dev] Main Menu: Follow-up

This commit is contained in:
Alexander Zinchuk 2022-02-20 14:05:25 +02:00
parent f9c9ae08ea
commit cbb3c2cb01
2 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
export const APP_NAME = 'Telegram WebZ';
export const APP_NAME = process.env.APP_NAME || 'Telegram WebZ';
export const APP_VERSION = process.env.APP_VERSION!;
export const APP_REVISION = process.env.APP_REVISION;

View File

@ -120,6 +120,7 @@ module.exports = (env = {}, argv = {}) => {
}),
new EnvironmentPlugin({
APP_ENV: 'production',
APP_NAME: null,
APP_VERSION: undefined,
APP_REVISION: appRevision,
TELEGRAM_T_API_ID: undefined,