Jelajahi Sumber

fix: asset warnigns on windows (#3220)

Miles Murgaw 7 bulan lalu
induk
melakukan
6da7226370
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  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 }