Merge pull request #46 from Andrew15-5/use-absolute-style-path

fix: used absolute path for `style` files
This commit is contained in:
YuKun Liu 2024-08-28 08:34:03 -07:00 committed by GitHub
commit 847b006357
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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 %}