You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A couple of packages that I use have css with entries like background-image: url('./font/somefont.woff2'); in them.
When I use dart_sass, these relative paths are still there and those images/fonts return 404s. Is there something I can configure to either rewrite them as a dataurl (like esbuild would), or to copy those into the output folder?
The text was updated successfully, but these errors were encountered:
Hi @CarterQC, sorry for the delayed response. This package is a thin wrapper around the Dart Sass Command-Line Interface, so if it can be done thru the CLI then it is possible here, otherwise there is not much that we can do.
A couple of packages that I use have css with entries like
background-image: url('./font/somefont.woff2');
in them.When I use dart_sass, these relative paths are still there and those images/fonts return 404s. Is there something I can configure to either rewrite them as a dataurl (like esbuild would), or to copy those into the output folder?
The text was updated successfully, but these errors were encountered: