fix(css): when compiling CSS, leave absolute imports alone
Closes #4592
This commit is contained in:
@ -59,9 +59,8 @@ Uri toAssetScheme(Uri absoluteUri) {
|
||||
return absoluteUri;
|
||||
}
|
||||
if (absoluteUri.scheme != 'package') {
|
||||
throw new FormatException(
|
||||
'Unsupported URI scheme "${absoluteUri.scheme}" encountered.',
|
||||
absoluteUri);
|
||||
// Pass through URIs with non-package scheme
|
||||
return absoluteUri;
|
||||
}
|
||||
|
||||
if (absoluteUri.pathSegments.length < 2) {
|
||||
|
Reference in New Issue
Block a user