mirror of
https://github.com/a2nt/silverstripe-webpack.git
synced 2024-10-22 17:05:31 +02:00
Cache fixtures
This commit is contained in:
parent
659212c294
commit
856d54de3c
@ -25,7 +25,7 @@ $MetaTags
|
|||||||
<link rel="icon" sizes="144x144" type="image/png" href="{$AbsoluteBaseURL}resources/app/client/dist/icons/android-chrome-144x144.png" />
|
<link rel="icon" sizes="144x144" type="image/png" href="{$AbsoluteBaseURL}resources/app/client/dist/icons/android-chrome-144x144.png" />
|
||||||
<link rel="apple-touch-icon" href="{$AbsoluteBaseURL}resources/app/client/dist/icons/apple-touch-icon.png" />
|
<link rel="apple-touch-icon" href="{$AbsoluteBaseURL}resources/app/client/dist/icons/apple-touch-icon.png" />
|
||||||
<link rel="apple-touch-icon-precomposed" href="{$AbsoluteBaseURL}resources/app/client/dist/icons/apple-touch-icon-precomposed.png" />
|
<link rel="apple-touch-icon-precomposed" href="{$AbsoluteBaseURL}resources/app/client/dist/icons/apple-touch-icon-precomposed.png" />
|
||||||
<link rel="manifest" href="/manifest.webmanifest" />
|
<link rel="manifest" href="/manifest.json" />
|
||||||
|
|
||||||
<meta name="application-name" content="{$SiteConfig.Title}" />
|
<meta name="application-name" content="{$SiteConfig.Title}" />
|
||||||
<meta name="msapplication-TileImage" content="{$AbsoluteBaseURL}resources/app/client/dist/icons/mstile-144x144.png" />
|
<meta name="msapplication-TileImage" content="{$AbsoluteBaseURL}resources/app/client/dist/icons/mstile-144x144.png" />
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<browserconfig>
|
<browserconfig>
|
||||||
<msapplication>
|
<msapplication>
|
||||||
<tile>
|
<tile>
|
||||||
<square70x70logo src="/resources/site/client/dist/icons/mstile-70x70.png"/>
|
<square70x70logo src="/resources/app/client/dist/icons/mstile-70x70.png"/>
|
||||||
<square150x150logo src="/resources/site/client/dist/icons/mstile-150x150.png"/>
|
<square150x150logo src="/resources/app/client/dist/icons/mstile-150x150.png"/>
|
||||||
<wide310x150logo src="/resources/site/client/dist/icons/mstile-310x150.png"/>
|
<wide310x150logo src="/resources/app/client/dist/icons/mstile-310x150.png"/>
|
||||||
<square310x310logo src="/resources/site/client/dist/icons/mstile-310x310.png"/>
|
<square310x310logo src="/resources/app/client/dist/icons/mstile-310x310.png"/>
|
||||||
<TileColor>#000</TileColor>
|
<TileColor>#000</TileColor>
|
||||||
</tile>
|
</tile>
|
||||||
</msapplication>
|
</msapplication>
|
||||||
|
@ -2,6 +2,6 @@ CACHE MANIFEST
|
|||||||
|
|
||||||
FALLBACK:
|
FALLBACK:
|
||||||
/
|
/
|
||||||
/resources/site/client/dist/css/app.css
|
/resources/app/client/dist/css/app.css
|
||||||
/resources/site/client/dist/img/logo.png
|
/resources/app/client/dist/img/logo.png
|
||||||
/resources/site/client/dist/js/app.js
|
/resources/app/client/dist/js/app.js
|
||||||
|
@ -10,39 +10,39 @@
|
|||||||
"theme_color": "#000000",
|
"theme_color": "#000000",
|
||||||
"background_color": "#000000",
|
"background_color": "#000000",
|
||||||
"icons": [{
|
"icons": [{
|
||||||
"src": "/resources/site/client/dist/icons/android-chrome-36x36.png",
|
"src": "/resources/app/client/dist/icons/android-chrome-36x36.png",
|
||||||
"sizes": "36x36",
|
"sizes": "36x36",
|
||||||
"type": "image/png"
|
"type": "image/png"
|
||||||
}, {
|
}, {
|
||||||
"src": "/resources/site/client/dist/icons/android-chrome-48x48.png",
|
"src": "/resources/app/client/dist/icons/android-chrome-48x48.png",
|
||||||
"sizes": "48x48",
|
"sizes": "48x48",
|
||||||
"type": "image/png"
|
"type": "image/png"
|
||||||
}, {
|
}, {
|
||||||
"src": "/resources/site/client/dist/icons/android-chrome-72x72.png",
|
"src": "/resources/app/client/dist/icons/android-chrome-72x72.png",
|
||||||
"sizes": "72x72",
|
"sizes": "72x72",
|
||||||
"type": "image/png"
|
"type": "image/png"
|
||||||
}, {
|
}, {
|
||||||
"src": "/resources/site/client/dist/icons/android-chrome-96x96.png",
|
"src": "/resources/app/client/dist/icons/android-chrome-96x96.png",
|
||||||
"sizes": "96x96",
|
"sizes": "96x96",
|
||||||
"type": "image/png"
|
"type": "image/png"
|
||||||
}, {
|
}, {
|
||||||
"src": "/resources/site/client/dist/icons/android-chrome-144x144.png",
|
"src": "/resources/app/client/dist/icons/android-chrome-144x144.png",
|
||||||
"sizes": "144x144",
|
"sizes": "144x144",
|
||||||
"type": "image/png"
|
"type": "image/png"
|
||||||
}, {
|
}, {
|
||||||
"src": "/resources/site/client/dist/icons/android-chrome-192x192.png",
|
"src": "/resources/app/client/dist/icons/android-chrome-192x192.png",
|
||||||
"sizes": "192x192",
|
"sizes": "192x192",
|
||||||
"type": "image/png"
|
"type": "image/png"
|
||||||
}, {
|
}, {
|
||||||
"src": "/resources/site/client/dist/icons/android-chrome-256x256.png",
|
"src": "/resources/app/client/dist/icons/android-chrome-256x256.png",
|
||||||
"sizes": "256x256",
|
"sizes": "256x256",
|
||||||
"type": "image/png"
|
"type": "image/png"
|
||||||
}, {
|
}, {
|
||||||
"src": "/resources/site/client/dist/icons/android-chrome-384x384.png",
|
"src": "/resources/app/client/dist/icons/android-chrome-384x384.png",
|
||||||
"sizes": "384x384",
|
"sizes": "384x384",
|
||||||
"type": "image/png"
|
"type": "image/png"
|
||||||
}, {
|
}, {
|
||||||
"src": "/resources/site/client/dist/icons/android-chrome-512x512.png",
|
"src": "/resources/app/client/dist/icons/android-chrome-512x512.png",
|
||||||
"sizes": "512x512",
|
"sizes": "512x512",
|
||||||
"type": "image/png"
|
"type": "image/png"
|
||||||
}]
|
}]
|
||||||
|
Loading…
Reference in New Issue
Block a user