apparently web manifests need crossorigin credentials even when they're same origin???

This commit is contained in:
xenofem 2024-01-25 16:10:15 -05:00
parent e5b2e1e7a2
commit bb8ae8e055

View file

@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="color-scheme" content="dark">
<title>{% block title %}{% if title %}{{ title }} - {% else %}{% endif %}DLibrary{% endblock %}</title>
<link rel="manifest" href="{{ root() }}/static/manifest.json">
<link rel="manifest" href="{{ root() }}/static/manifest.json" crossorigin="use-credentials">
<link rel="stylesheet" type="text/css" href="{{ root() }}/static/dlibrary.css">
{% block head %}{% endblock %}
</head>