Change all.js to app.js

This commit is contained in:
Oliver Davies 2019-03-14 15:52:43 +00:00
parent 775290d239
commit d3cafaaa32
2 changed files with 2 additions and 2 deletions

View file

@ -29,7 +29,7 @@
<script>(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', '{{ site.google_analytics_tracking_id }}', 'auto'); ga('send', 'pageview');</script>
{% endif %}
<script src="/dist/js/all.js"></script>
<script src="/dist/js/app.js"></script>
{% block scripts %}{% endblock %}
</body>
</html>

View file

@ -10,7 +10,7 @@ mix.disableNotifications()
.js([
'node_modules/jquery/src/jquery.js',
'assets/js/app.js',
], 'source/dist/js/all.js')
], 'source/dist/js/app.js')
.purgeCss({
globs: [
path.join(__dirname, 'assets/js/**/*.{js,vue}'),