From 101de23d62fdf2d081762e1e813bd5ce2fdaa89d Mon Sep 17 00:00:00 2001 From: Andrew Voynov Date: Thu, 22 Aug 2024 04:30:33 +0500 Subject: [PATCH] fix: used absolute path for `style` files --- Desktop/Dioxus.toml | 2 +- Fullstack/Dioxus.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Desktop/Dioxus.toml b/Desktop/Dioxus.toml index 5eb5d78..ddc5a6c 100644 --- a/Desktop/Dioxus.toml +++ b/Desktop/Dioxus.toml @@ -31,7 +31,7 @@ watch_path = ["src", "assets"] # CSS style file {% if styling == "Tailwind" %} -style = ["tailwind.css"] +style = ["/tailwind.css"] {% else %} style = [] {% endif %} diff --git a/Fullstack/Dioxus.toml b/Fullstack/Dioxus.toml index 0d3c5ba..ca6479b 100644 --- a/Fullstack/Dioxus.toml +++ b/Fullstack/Dioxus.toml @@ -31,7 +31,7 @@ watch_path = ["src", "assets"] # CSS style file {% if styling == "Tailwind" %} -style = ["tailwind.css"] +style = ["/tailwind.css"] {% else %} style = [] {% endif %}