🔨 chore: Fix liquid code for JS minify

This commit is contained in:
marleyrae 2023-06-05 18:44:10 -07:00
parent e0bb638fcc
commit dcab28e22b
2 changed files with 9 additions and 4 deletions

5
dist/index.html vendored
View file

@ -53,5 +53,10 @@
</aside> </aside>
<script>
TypeError: callback is not a function
</script>
</body> </body>
</html> </html>

View file

@ -48,12 +48,12 @@
</aside> </aside>
{% set js %} {% capture js %}
{% include 'main.js' %} {% include 'main.js' %}
{% endset %} {% endcapture %}
<script> <script>
{{ js | jsMin | safe }} {{ js | jsMin }}
</script> </script>
</body> </body>
</html> </html>