Skip to content

Commit

Permalink
fix: base url des favicons
Browse files Browse the repository at this point in the history
  • Loading branch information
ocruze committed Jan 30, 2025
1 parent 53eea0b commit 3825e66
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions templates/base.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
cartes.gouv.fr
{% endblock %}
</title>
<link rel="apple-touch-icon" href="favicon/apple-touch-icon.png" />
<link rel="icon" href="favicon/favicon.svg" type="image/svg+xml" />
<link rel="shortcut icon" href="favicon/favicon.ico" type="image/x-icon" />
<link rel="manifest" href="favicon/manifest.webmanifest" crossorigin="use-credentials" />
<link rel="apple-touch-icon" href="{{ app.request.baseUrl ~ '/favicon/apple-touch-icon.png' }}" />
<link rel="icon" href="{{ app.request.baseUrl ~ '/favicon/favicon.svg' }}" type="image/svg+xml" />
<link rel="shortcut icon" href="{{ app.request.baseUrl ~ '/favicon/favicon.ico' }}" type="image/x-icon" />
<link rel="manifest" href="{{ app.request.baseUrl ~ '/favicon/manifest.webmanifest' }}" crossorigin="use-credentials" />

{# <link rel="stylesheet" href="{{ asset('node_modules/@codegouvfr/react-dsfr/main.css') }}" /> #}

Expand Down

0 comments on commit 3825e66

Please sign in to comment.