File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
packages/shared-integration/src Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ export const VIRTUAL_ENTRY_ALIAS = [
3
3
]
4
4
export const LAYER_MARK_ALL = '__ALL__'
5
5
6
- export const RESOLVED_ID_WITH_QUERY_RE = / \0 ? [ \/ \\ ] _ _ u n o (?: ( _ .* ?) ) ? \. c s s ( \? .* ) ? $ /
7
- export const RESOLVED_ID_RE = / \0 ? [ \/ \\ ] _ _ u n o (?: ( _ .* ?) ) ? \. c s s $ /
6
+ export const RESOLVED_ID_WITH_QUERY_RE = / [ \/ \\ ] _ _ u n o (?: ( _ .* ?) ) ? \. c s s ( \? .* ) ? $ /
7
+ export const RESOLVED_ID_RE = / [ \/ \\ ] _ _ u n o (?: ( _ .* ?) ) ? \. c s s $ /
8
8
9
9
export function resolveId ( id : string ) {
10
10
if ( id . match ( RESOLVED_ID_WITH_QUERY_RE ) )
@@ -14,8 +14,8 @@ export function resolveId(id: string) {
14
14
const match = id . match ( alias )
15
15
if ( match ) {
16
16
return match [ 1 ]
17
- ? `\0 /__uno_${ match [ 1 ] } .css`
18
- : '\0 /__uno.css'
17
+ ? `/__uno_${ match [ 1 ] } .css`
18
+ : '/__uno.css'
19
19
}
20
20
}
21
21
}
You can’t perform that action at this time.
0 commit comments