diff --git a/src/index.html b/src/index.html
index 65d1053ae..85485af86 100644
--- a/src/index.html
+++ b/src/index.html
@@ -4,7 +4,7 @@
- <%= htmlWebpackPlugin.options.appName %>
+ <%= htmlWebpackPlugin.options.pageTitle %>
diff --git a/webpack.config.js b/webpack.config.js
index c0eb41bcf..5d4b2c7c3 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -141,6 +141,7 @@ module.exports = (_env, { mode = 'production' }) => {
'./MockClient.ts'
)] : []),
new HtmlWebpackPlugin({
+ pageTitle: 'Telegram Web Messenger',
appName: APP_ENV === 'production' ? 'Telegram Web' : 'Telegram Web Beta',
appleIcon: APP_ENV === 'production' ? 'apple-touch-icon' : 'apple-touch-icon-dev',
mainIcon: APP_ENV === 'production' ? 'icon-192x192' : 'icon-dev-192x192',