Skip to content

Commit

Permalink
unpkg.com vervangen door jsdelivr.net
Browse files Browse the repository at this point in the history
unpkg.com ligt eruit, zie https://forum.beneluxspoor.net/index.php?topic=110321.msg3222465555#msg3222465555

In een issue op de unpkg repo op github werd jsdelivr.net aangeraden: mjackson/unpkg#384 (comment)

Geen idee of dat een goede is, maar hij doet het op het moment in ieder geval.
  • Loading branch information
reinout authored Apr 12, 2024
1 parent 394d325 commit 0f0edeb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/base.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<meta charset="UTF-8">
<title>{% block title %}{{ 'title' | trans }}{% endblock %}</title>
<link rel="stylesheet" href="{{ asset('app.css') }}" type="text/css" />
<link rel="stylesheet" href="https://unpkg.com/dropzone@5/dist/min/dropzone.min.css" type="text/css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/dropzone@5/dist/min/dropzone.min.css" type="text/css" />
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}" />
</head>
<body>
{% block body %}{% endblock %}
</body>
<script src="https://unpkg.com/dropzone@5/dist/min/dropzone.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/dropzone@5/dist/min/dropzone.min.js"></script>
<script src="{{ asset('jquery.min.js') }}"></script>
<script src="{{ asset('app.js') }}"></script>
{% block javascript %}{% endblock %}
Expand Down

0 comments on commit 0f0edeb

Please sign in to comment.