diff --git a/backend/Services/View/Adapters/Vuejs.php b/backend/Services/View/Adapters/Vuejs.php index b902252..eb0a6ef 100644 --- a/backend/Services/View/Adapters/Vuejs.php +++ b/backend/Services/View/Adapters/Vuejs.php @@ -31,7 +31,7 @@ class Vuejs implements Service, ViewInterface public function getIndexPage() { - $title = $this->config->get('frontend_config.app_name'); + $title = APP_ENV == 'development' ? 'Development mode' : $this->config->get('frontend_config.app_name'); $public_path = $this->config->get('public_path'); $public_dir = $this->config->get('public_dir');