Hello Team,
We have created one project SmartApp & below are entries in config.json.
{
"name" : "SmartApp",
"mode": "production",
"debugLevel": 1,
"eliminate": false,
"minify": true,
..
...
...
}
We can see the title of the page as "SmartApp" [Code in index.html is --> <title>SmartApp</title>]
Now we want to change page title to "Nexus-on-Mobile" so we did the changes in config.json as below.
Added displayName attribute
{
"name" : "SmartApp",
"displayName":"Nexus-on-Mobile",
"mode": "production",
...
..
..}
But still its showing SmartApp as page title whereas code in index.html changes to --> <title>Nexus-on-Mobile</title>
Could you please tell the resolution to this problem?
Thanks & Regards,
Sagar Raut