Update tailwind examples to work with multi-page apps (#1339)

* Update tailwind example to work with multi-page apps

Use the absolute path to `tailwind.css` so the example works with multi-page apps. Without this change, the style disappears on page reload.

* Update tailwind Dioxus.toml to use absolute path for tailwind.css
This commit is contained in:
Steven Pecht 2023-08-12 23:34:42 +10:00 committed by GitHub
parent c95f70f55a
commit bdfb3b6285
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ watch_path = ["src", "public"]
[web.resource]
# CSS style file
style = ["tailwind.css"]
style = ["/tailwind.css"]
# Javascript code file
script = []

View File

@ -81,7 +81,7 @@ watch_path = ["src", "public"]
[web.resource]
# CSS style file
style = ["tailwind.css"]
style = ["/tailwind.css"]
# Javascript code file
script = []