test manifest
@@ -21,8 +21,8 @@
|
||||
<env name="APP_ENV" value="testing"/>
|
||||
<env name="BCRYPT_ROUNDS" value="4"/>
|
||||
<env name="CACHE_DRIVER" value="array"/>
|
||||
<!-- <env name="DB_CONNECTION" value="sqlite"/> -->
|
||||
<!-- <env name="DB_DATABASE" value=":memory:"/> -->
|
||||
<env name="DB_CONNECTION" value="sqlite"/>
|
||||
<env name="DB_DATABASE" value=":memory:"/>
|
||||
<env name="MAIL_MAILER" value="array"/>
|
||||
<env name="QUEUE_CONNECTION" value="sync"/>
|
||||
<env name="SESSION_DRIVER" value="array"/>
|
||||
|
||||
@@ -1,12 +1,14 @@
|
||||
{
|
||||
"name":"Bermite",
|
||||
"short_name":"Bermite",
|
||||
"display":"standalone",
|
||||
"background_color":"#ffffff",
|
||||
"lang":"fr",
|
||||
"description":"Une application de suivi météo",
|
||||
"theme_color":"#ffffff",
|
||||
"icons":[
|
||||
{"src":"images/weather.png","sizes":"521x512","type":"image/png"}
|
||||
]
|
||||
"name": "Bermite",
|
||||
"short_name": "Bermite",
|
||||
"lang": "fr",
|
||||
"description": "Une application de suivi météo",
|
||||
"icons": [
|
||||
{"src":"images/weather.png", "sizes":"521x512", "type":"image/png"},
|
||||
{"src": "images/android-chrome-192x192.png", "sizes": "192x192", "type": "image/png"},
|
||||
{"src": "images/android-chrome-512x512.png", "sizes": "512x512", "type": "image/png"}
|
||||
],
|
||||
"theme_color": "#ffffff",
|
||||
"background_color": "#ffffff",
|
||||
"display": "standalone"
|
||||
}
|
||||
|
||||
BIN
resources/images/android-chrome-192x192.png
Normal file
|
After Width: | Height: | Size: 7.0 KiB |
BIN
resources/images/android-chrome-512x512.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
resources/images/apple-touch-icon.png
Normal file
|
After Width: | Height: | Size: 6.5 KiB |
BIN
resources/images/favicon-16x16.png
Normal file
|
After Width: | Height: | Size: 899 B |
BIN
resources/images/favicon-32x32.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
BIN
resources/images/mstile-144x144.png
Normal file
|
After Width: | Height: | Size: 5.2 KiB |
BIN
resources/images/mstile-150x150.png
Normal file
|
After Width: | Height: | Size: 5.1 KiB |
BIN
resources/images/mstile-310x150.png
Normal file
|
After Width: | Height: | Size: 5.6 KiB |
BIN
resources/images/mstile-310x310.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
resources/images/mstile-70x70.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
@@ -5,10 +5,15 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||
|
||||
<link rel="icon" href="/images/favicon.ico" sizes="any">
|
||||
<link rel="icon" href="/images/favicon.svg" type="image/svg+xml">
|
||||
<link rel="mask-icon" href="/images/favicon.svg" color="#FFFFFF">
|
||||
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
||||
{{-- <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">--}}
|
||||
<meta name="theme-color" content="#1a1a1a">
|
||||
|
||||
<link rel="manifest" href="manifest.json" />
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
|
||||