wn-discoteam-theme/partials/headassets/default.htm

12 lines
494 B
HTML
Raw Normal View History

2024-10-03 12:57:11 +02:00
{% if devServerIsRunning %}
2024-10-03 16:17:51 +02:00
<script type="module" src="http://localhost:3000/themes/vite-tailwind/@vite/client"></script>
<script type="module" src="http://localhost:3000/themes/vite-tailwind/resources/js/app.js"></script>
2024-10-03 12:57:11 +02:00
{% else %}
{% for css in cssPaths %}
<link rel="stylesheet" href="{{ ('assets/public/' ~ css)|theme }}">
{% endfor %}
{% put scripts %}
<script type="module" src="{{ ('assets/public/' ~ jsPath)|theme }}"></script>
{% endput %}
{% endif %}