From ff43b74c2fd9c3b23330577b1e41d31194520e03 Mon Sep 17 00:00:00 2001 From: Miles Murgaw Date: Fri, 15 Nov 2024 13:23:40 -0500 Subject: [PATCH] fix: asset warnigns on windows --- packages/manganis/manganis-macro/src/asset.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/manganis/manganis-macro/src/asset.rs b/packages/manganis/manganis-macro/src/asset.rs index f952281bc1..7eebd799bb 100644 --- a/packages/manganis/manganis-macro/src/asset.rs +++ b/packages/manganis/manganis-macro/src/asset.rs @@ -85,7 +85,7 @@ impl ToTokens for AssetParser { let option_source = &self.options; // generate the asset::new method to deprecate the `./assets/blah.css` syntax - let method = if asset.input.is_relative() { + let method = if !asset.input.starts_with("/") { quote::quote! { new_relative } } else { quote::quote! { new }