Implement site.webmanifest for improved user experience

- Add a set of default config values for the app manifest

Signed-off-by: Dillon-Brown <dillon.brown@salesagility.com>
This commit is contained in:
Dillon-Brown 2020-06-03 07:09:12 +01:00
parent 8b44274cd2
commit 1e004f4913
2 changed files with 20 additions and 8 deletions

View file

@ -2,16 +2,17 @@
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>SuiteCRM</title>
<base href=""/>
<meta charset="utf-8"/>
<title>SuiteCRM</title>
<base href=""/>
<meta http-equiv="cache-control" content="no-cache, must-revalidate, post-check=0, pre-check=0">
<meta http-equiv="expires" content="0">
<meta http-equiv="pragma" content="no-cache">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1"/>
<meta http-equiv="cache-control" content="no-cache, must-revalidate, post-check=0, pre-check=0">
<meta http-equiv="expires" content="0">
<meta http-equiv="pragma" content="no-cache">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1"/>
<link rel="icon" type="image/x-icon" href="public/themes/suite8/images/favicon.ico"/>
<link rel="manifest" href="site.webmanifest">
<link rel="icon" type="image/x-icon" href="public/themes/suite8/images/favicon.ico"/>
</head>
<body>

11
site.webmanifest Normal file
View file

@ -0,0 +1,11 @@
{
"lang": "en-US",
"name": "SuiteCRM",
"short_name": "SCRM",
"description": "SuiteCRM - Open source CRM for the world",
"start_url": ".",
"orientation": "portrait",
"display": "fullscreen",
"background_color": "#778591",
"icons": [{"src": "legacy/themes/default/images/company_logo.png", "sizes": "184x40", "type": "image/png"}]
}