fix: used absolute path for `style` files

This commit is contained in:
Andrew Voynov 2024-08-22 04:30:33 +05:00
parent 51b70cf569
commit 101de23d62
No known key found for this signature in database
GPG Key ID: 1BE92DD685700329
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ watch_path = ["src", "assets"]
# CSS style file
{% if styling == "Tailwind" %}
style = ["tailwind.css"]
style = ["/tailwind.css"]
{% else %}
style = []
{% endif %}

View File

@ -31,7 +31,7 @@ watch_path = ["src", "assets"]
# CSS style file
{% if styling == "Tailwind" %}
style = ["tailwind.css"]
style = ["/tailwind.css"]
{% else %}
style = []
{% endif %}