Remove compress as a default action and use uncompressed assets for now.

This commit is contained in:
Christopher Charbonneau Wells 2017-08-21 16:23:45 -04:00
parent f62c8edf52
commit e33b3b24b7
2 changed files with 5 additions and 5 deletions

View File

@ -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>

View File

@ -1,4 +1,4 @@
const gulp = require('gulp');
gulp.task('default', ['scripts', 'styles', 'compress', 'extras']);
gulp.task('default', ['scripts', 'styles', 'extras']);