Add a manifest.json file

This commit is contained in:
Mike Wink 2022-11-18 10:59:47 +01:00
commit e1e684205e
3 changed files with 1375 additions and 1 deletions

File diff suppressed because one or more lines are too long

View file

@ -8,6 +8,9 @@
<meta http-equiv="Content-Security-Policy"
content="default-src 'self' data: ; img-src 'self' data: ; font-src 'self'; object-src 'none'; script-src 'self'; style-src 'self'">
<link rel="manifest"
href="/manifest.json">
<link rel="stylesheet"
href="/build/styles.css">

8
public/manifest.json Normal file
View file

@ -0,0 +1,8 @@
{
"short_name": "Mike Wink",
"name": "Mike Wink - A PHP Developer",
"start_url": "/",
"background_color": "#e0fbfb",
"theme_color": "#e0fbfb",
"display": "standalone"
}