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:
parent
c95f70f55a
commit
bdfb3b6285
|
@ -30,7 +30,7 @@ watch_path = ["src", "public"]
|
|||
[web.resource]
|
||||
|
||||
# CSS style file
|
||||
style = ["tailwind.css"]
|
||||
style = ["/tailwind.css"]
|
||||
|
||||
# Javascript code file
|
||||
script = []
|
||||
|
|
|
@ -81,7 +81,7 @@ watch_path = ["src", "public"]
|
|||
[web.resource]
|
||||
|
||||
# CSS style file
|
||||
style = ["tailwind.css"]
|
||||
style = ["/tailwind.css"]
|
||||
|
||||
# Javascript code file
|
||||
script = []
|
||||
|
|
Loading…
Reference in New Issue