fix(frontend): correct CSS-resolving:: reverse url indexes order
This commit is contained in:
parent
3298ad39b6
commit
798289a505
1 changed files with 1 additions and 1 deletions
|
|
@ -26,7 +26,7 @@ function cssUrlsIndex(css: string): Array<[number, number]> {
|
|||
const e = s + m[1].length;
|
||||
idxs.push([s, e])
|
||||
}
|
||||
return idxs;
|
||||
return idxs.reverse();
|
||||
}
|
||||
function unquote(str: string): [string, string] {
|
||||
str = str.trim();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue