Change all.js to app.js
This commit is contained in:
parent
775290d239
commit
d3cafaaa32
|
@ -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>
|
<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 %}
|
{% endif %}
|
||||||
|
|
||||||
<script src="/dist/js/all.js"></script>
|
<script src="/dist/js/app.js"></script>
|
||||||
{% block scripts %}{% endblock %}
|
{% block scripts %}{% endblock %}
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -10,7 +10,7 @@ mix.disableNotifications()
|
||||||
.js([
|
.js([
|
||||||
'node_modules/jquery/src/jquery.js',
|
'node_modules/jquery/src/jquery.js',
|
||||||
'assets/js/app.js',
|
'assets/js/app.js',
|
||||||
], 'source/dist/js/all.js')
|
], 'source/dist/js/app.js')
|
||||||
.purgeCss({
|
.purgeCss({
|
||||||
globs: [
|
globs: [
|
||||||
path.join(__dirname, 'assets/js/**/*.{js,vue}'),
|
path.join(__dirname, 'assets/js/**/*.{js,vue}'),
|
||||||
|
|
Reference in a new issue