mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 12:18:45 -05:00
13 lines
332 B
HTML
13 lines
332 B
HTML
{% load static %}
|
|
{% load custom_tags %}
|
|
|
|
{% is_debug as DEBUG %}
|
|
{% if DEBUG %}
|
|
<script src="{% static 'js/vue.js' %}"></script>
|
|
{% else %}
|
|
<script src="{% static 'js/vue.min.js' %}"></script>
|
|
{% endif %}
|
|
|
|
<script src="{% static 'js/vue-resource.js' %}"></script>
|
|
|
|
<script src="{% static 'js/js.cookie.min.js' %}"></script> |