Kaynağa Gözat

fix: asset warnigns on windows (#3220)

Miles Murgaw 7 ay önce
ebeveyn
işleme
6da7226370
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1 1
      packages/manganis/manganis-macro/src/asset.rs

+ 1 - 1
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 }