Skip to content

Commit d11e7cd

Browse files
authored
feat(perf): Speed-up loading by using smaller resources (js,css) (#12178)
1 parent 9fcf423 commit d11e7cd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dojo/templates/base.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
{% endblock %}
2626

2727
<!-- jQuery -->
28-
<script src="{% static "jquery/dist/jquery.js" %}"></script>
28+
<script src="{% static "jquery/dist/jquery.min.js" %}"></script>
2929
<!-- jQuery UI -->
3030
<script src="{% static "jquery-ui/dist/jquery-ui.min.js" %}"></script>
3131
<!-- Bootstrap Core JavaScript -->
@@ -74,9 +74,9 @@
7474
<link href="{% static "startbootstrap-sb-admin-2/dist/css/sb-admin-2.css" %}" rel="stylesheet">
7575

7676
<!-- Custom Fonts -->
77-
<link href="{% static 'fontawesomefree/css/fontawesome.css' %}" rel="stylesheet" type="text/css">
78-
<link href="{% static 'fontawesomefree/css/brands.css' %}" rel="stylesheet" type="text/css">
79-
<link href="{% static 'fontawesomefree/css/solid.css' %}" rel="stylesheet" type="text/css">
77+
<link href="{% static 'fontawesomefree/css/fontawesome.min.css' %}" rel="stylesheet" type="text/css">
78+
<link href="{% static 'fontawesomefree/css/brands.min.css' %}" rel="stylesheet" type="text/css">
79+
<link href="{% static 'fontawesomefree/css/solid.min.css' %}" rel="stylesheet" type="text/css">
8080

8181
{% block add_css %}
8282
{% endblock %}

0 commit comments

Comments
 (0)