Skip to content

Commit f00e4f7

Browse files
committed
fix: windows path
1 parent c27fe46 commit f00e4f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/ast.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export function patchEntryAlias(
3434
s.overwrite(
3535
i.source.start + 1,
3636
i.source.end - 1,
37-
`./${path.join(offset, i.source.value)}`,
37+
`./${path.join(offset, i.source.value).replaceAll('\\', '/')}`,
3838
)
3939
}
4040
}

0 commit comments

Comments
 (0)