Hi,
I am currently testing the cookbook recipe “Kirby loves CDN” and so far everything is going great. Both the images and JS/CSS files are delivered via the CDN URL.
Only the favicon are still delivered via the site URL - here the routing does not work and I can’t see what the problem is.
header.php
<link rel="apple-touch-icon" sizes="180x180" href="<?= url('apple-touch-icon.png') ?>">
<?= css([ 'assets/css/app.min.css', '@auto']) ?>
result
<link rel="apple-touch-icon" sizes="180x180" href="https://kirby.test/apple-touch-icon.png">
<link href="https://yourpullzone.yourcdn.com/assets/css/app.min.css" rel="stylesheet">
I use the plugin from the Kirpy repo:
Maybe someone can give me a tip on how to get the favicons delivered via the CDN URL as well?
Thanks a lot
Patrick