mirror of https://github.com/snachodog/mybuddy.git
Remove compress as a default action and use uncompressed assets for now.
This commit is contained in:
parent
f62c8edf52
commit
e33b3b24b7
|
@ -7,16 +7,16 @@
|
|||
<meta name="viewport"
|
||||
content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<title>{% block title %}{% endblock %} | Baby Blotter</title>
|
||||
<link rel="stylesheet" href="{% static "babyblotter/css/app.min.css" %}" />
|
||||
<link rel="stylesheet" href="{% static "babyblotter/css/vendor.min.css" %}" />
|
||||
<link rel="stylesheet" href="{% static "babyblotter/css/app.css" %}" />
|
||||
<link rel="stylesheet" href="{% static "babyblotter/css/vendor.css" %}" />
|
||||
</head>
|
||||
<body style="padding-top: 5rem;">
|
||||
|
||||
{% block nav %}{% endblock %}
|
||||
{% block page %}{% endblock %}
|
||||
|
||||
<script src="{% static "babyblotter/js/vendor.min.js" %}"></script>
|
||||
<script src="{% static "babyblotter/js/app.min.js" %}"></script>
|
||||
<script src="{% static "babyblotter/js/vendor.js" %}"></script>
|
||||
<script src="{% static "babyblotter/js/app.js" %}"></script>
|
||||
{% block javascript %}{% endblock %}
|
||||
</body>
|
||||
</html>
|
|
@ -1,4 +1,4 @@
|
|||
const gulp = require('gulp');
|
||||
|
||||
|
||||
gulp.task('default', ['scripts', 'styles', 'compress', 'extras']);
|
||||
gulp.task('default', ['scripts', 'styles', 'extras']);
|
||||
|
|
Loading…
Reference in New Issue