mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
fix(example): wxss import error due to \ symbol for path in windows OS (#2924)
This commit is contained in:
parent
a6f2d4e668
commit
98d72b491f
@ -29,10 +29,12 @@ const lessCompiler = dist =>
|
||||
.pipe(
|
||||
insert.transform((contents, file) => {
|
||||
if (!file.path.includes('packages' + path.sep + 'common')) {
|
||||
const relativePath = path.relative(
|
||||
path.normalize(`${file.path}${path.sep}..`),
|
||||
baseCssPath
|
||||
);
|
||||
const relativePath = path
|
||||
.relative(
|
||||
path.normalize(`${file.path}${path.sep}..`),
|
||||
baseCssPath
|
||||
)
|
||||
.replace(/\\/g, '/');
|
||||
contents = `@import '${relativePath}';${contents}`;
|
||||
}
|
||||
return contents;
|
||||
|
Loading…
x
Reference in New Issue
Block a user