Rename files

This commit is contained in:
Oliver Davies 2018-09-04 22:10:47 +01:00
parent 97dc8b3acd
commit c25710b75f
4 changed files with 3 additions and 3 deletions

View file

@ -19,7 +19,7 @@
{% include 'og' with { og: page.meta.og } %}
<link rel="stylesheet" href="/dist/css/site.css">
<link rel="stylesheet" href="/dist/css/app.css">
{% block stylesheets %}{% endblock %}
{% for size in site.apple_touch_icon_sizes %}

View file

@ -4,11 +4,11 @@ require('laravel-mix-purgecss');
require('laravel-mix-tailwind');
mix.disableNotifications()
.sass('assets/sass/site.sass', 'source/dist/css')
.sass('assets/sass/app.sass', 'source/dist/css')
.combine([
'node_modules/jquery/dist/jquery.js',
'node_modules/highlightjs/highlight.pack.js',
'assets/js/site.js',
'assets/js/app.js',
], 'source/dist/js/all.js')
.copyDirectory('node_modules/font-awesome/fonts', 'source/dist/fonts')
.tailwind()